"Hello World" in programming languages

NetCrime

Regular Member
Joined
Mar 9, 2011
Messages
263
Reaction score
124
Hey,

Today I was checking this wikipedia LIST on how to write "hello world" program in variuos programming languages and I found lots of "interesting" languages for example in BRAINFUCK programing language to write "hello world" you will have to write this code:

Code:
[COLOR=#006600][FONT=monospace]+++++[/FONT][/COLOR][COLOR=#006600][FONT=monospace]+++++[/FONT][/COLOR][COLOR=#666666][FONT=monospace][I]             initialize counter (cell #0) to 10[/I][/FONT][/COLOR][COLOR=#660000][[/COLOR][COLOR=#666666][I]                       use loop to set the next four cells to 70/100/30/10/40[/I][/COLOR]
    [COLOR=#000066]>[/COLOR] [COLOR=#006600]+++++[/COLOR] [COLOR=#006600]++[/COLOR][COLOR=#666666][I]              add  7 to cell #1[/I][/COLOR]
    [COLOR=#000066]>[/COLOR] [COLOR=#006600]+++++[/COLOR] [COLOR=#006600]+++++[/COLOR][COLOR=#666666][I]           add 10 to cell #2 [/I][/COLOR]
    [COLOR=#000066]>[/COLOR] [COLOR=#006600]+++[/COLOR][COLOR=#666666][I]                   add  3 to cell #3[/I][/COLOR]
    [COLOR=#000066]>[/COLOR] [COLOR=#006600]+[/COLOR][COLOR=#666666][I]                     add  1 to cell #4[/I][/COLOR]
    [COLOR=#000066]>[/COLOR] [COLOR=#006600]++++[/COLOR][COLOR=#666666][I]                  add 4 to cell #5[/I][/COLOR]
    [COLOR=#000066]<<<<<[/COLOR] [COLOR=#006600]-[/COLOR][COLOR=#666666][I]                  decrement counter (cell #0)[/I][/COLOR]
[COLOR=#660000]][/COLOR]                   
[COLOR=#000066]>[/COLOR] [COLOR=#006600]++[/COLOR] [COLOR=#666600].[/COLOR][COLOR=#666666][I]                  print 'H'[/I][/COLOR]
[COLOR=#000066]>[/COLOR] [COLOR=#006600]+[/COLOR] [COLOR=#666600].[/COLOR][COLOR=#666666][I]                   print 'e'[/I][/COLOR]
[COLOR=#006600]+++++[/COLOR] [COLOR=#006600]++[/COLOR] [COLOR=#666600].[/COLOR][COLOR=#666666][I]              print 'l'[/I][/COLOR]
[COLOR=#666600].[/COLOR][COLOR=#666666][I]                       print 'l'[/I][/COLOR]
[COLOR=#006600]+++[/COLOR] [COLOR=#666600].[/COLOR][COLOR=#666666][I]                   print 'o'[/I][/COLOR]
[COLOR=#000066]>>>[/COLOR] [COLOR=#006600]++++[/COLOR] [COLOR=#666600].[/COLOR][COLOR=#666666][I]              print '[/I][/COLOR][COLOR=#666600],[/COLOR][COLOR=#666666][I]'[/I][/COLOR]
[COLOR=#000066]<<[/COLOR] [COLOR=#006600]++[/COLOR] [COLOR=#666600].[/COLOR][COLOR=#666666][I]                 print ' '[/I][/COLOR]
 
[COLOR=#000066]<[/COLOR] [COLOR=#006600]+++++[/COLOR] [COLOR=#006600]+++[/COLOR] [COLOR=#666600].[/COLOR][COLOR=#666666][I]           print 'w'[/I][/COLOR]
 [COLOR=#006600]-----[/COLOR] [COLOR=#006600]---[/COLOR] [COLOR=#666600].[/COLOR][COLOR=#666666][I]            print 'o'[/I][/COLOR]
[COLOR=#006600]+++[/COLOR] [COLOR=#666600].[/COLOR][COLOR=#666666][I]                   print 'r'[/I][/COLOR]
[COLOR=#006600]-----[/COLOR] [COLOR=#006600]-[/COLOR] [COLOR=#666600].[/COLOR][COLOR=#666666][I]               print 'l'[/I][/COLOR]
[COLOR=#006600]-----[/COLOR] [COLOR=#006600]---[/COLOR] [COLOR=#666600].[/COLOR][COLOR=#666666][I]             print 'd'[/I][/COLOR]
[COLOR=#000066]>[/COLOR] [COLOR=#006600]+[/COLOR] [COLOR=#666600].[/COLOR][COLOR=#666666][I]                   print '!'[/I][/COLOR] [COLOR=#000066][FONT=monospace]>[/FONT][/COLOR][COLOR=#666600][FONT=monospace].[/FONT][/COLOR][COLOR=#666666][FONT=monospace][I]                     print '\n'[/I][/FONT][/COLOR]

But my TOP pick is SUPERNOVA programing language. To write "Hello World" program in Supernova you will have to write this:

Code:
I want window and the window title is hello world.

I would love to see somthing like scrapebox programmed in supernova language I imagine it would be somthing like this:

Code:
When I click this button go to google and get me my links. Bitch
 
Supernova looks like it's a programming language on top of some .Net language. nice idea but it's probably a bit to early to have something like this working practically.... this will (imo) take several decades atleast to be usable....

The thing with computer languages is that they are very explicit while human language is not necessarely so. When a group of people know context and have a similar background a sentence open for interpretation will be understood. Typos are one thing, but shaping sentences can also be done in several ways and we still understand people who don't speak at the same level of proficiency in a certain language. Interpretation is different for many humans, so there will always be some sort of learning barrier in order to program... so, fun project but currently there are better solutions.
 
WindowsScriptHost
VBScript:
WScript.StdOut.WriteLine "Hello, World";


JScript:
WScript.StdOut.WriteLine("Hello, World");
 
Code:
<? echo "Hellow World";

Not a good practise though.
 
Tripple dash is a minimalist language that consists of only one operation.
Code:
/ world! world!/Hello,/ world! world! world!
 
Last edited:
Back
Top