Write a code to display "I Love You".
Without using any built-in tools or functions like echo
, System.out.println
, printf
, ...
You are not allowed to directly call any function throughout the program execution, but the system environment or the compiler-generated code might do. This way, you can put your code in a main
function or method that is called by the running environment, but your program should not further call any functions.
By the way, a function is not an instruction, nor a command nor an operator. So calling sum(a, b)
is not valid, but making a = b + c
is, even if the compiler reduces this to internal function calls.
This is a popularity-contest, so the valid answer with the most upvotes wins.
c
and many other languages. – user689 Feb 22 at 14:32