Hello World without hello world
Friday, 17. April 2009, 12:47:16
Post your solutions in comments and make sure to also mention which programming language it is written in.
To make life easier
Friday, 17. April 2009, 12:47:16
Regshx - Registry editing shell tool
anonymous
hhh3h writes: Ok well, if you don't accept upper case either, h ...
anonymous
hhh3h writes: Wait: Print(LCasE("HELLO WORLD")) Case insensit ...
anonymous
hhh3h writes: No fair. You can't do it in VB.NET at all, mostl ...
Just used this to change default text editor from Notepad to Edi ...
anonymous
-luXus writes: You could use brainfuck ;-) : ++++++++++[>+++++ ...
Here's one in C (not completely valid, but for example GCC will ...
Joonas Lehtolahti # 17. April 2009, 15:33
int main() {
int c[] = {0x6c6c6568, 0x6f77206f, 0x646c72};
puts(c);
}
Anonymous # 20. April 2009, 19:07
You could use brainfuck ;-) :
++++++++++[>+++++++>++++++++++>+++>+ ++.>+.+++++++..+++.>++. .+++.------.--------.>+.>.
Anonymous # 8. July 2009, 01:45
No fair. You can't do it in VB.NET at all, mostly because of "e"
End If | End Sub | End Class | etc
Anonymous # 8. July 2009, 01:53
Wait:
Print(LCasE("HELLO WORLD"))
Case insensitivity for the win?
(VB.NET)
Anonymous # 8. July 2009, 02:02
Ok well, if you don't accept upper case either, how about this (also VB.NET).
Print(ChrW(104) & ChrW(101) & ChrW(108) & ChrW(108) & ChrW(111) & " " & ChrW(119) & ChrW(111) & ChrW(114) & ChrW(108) & ChrW(100))
If you are just accepting one single line. If it has to be a full program, it is not possible in VB.NET because it would have to go inside this:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
'The line
End Sub
End Class