Jump to content

"Hello World!"


joppiesaus

Recommended Posts

The target of this game is that you post a "Hello World!" code for a program, with the following rules:

  • The code must work
  • If a programming language example is already posted, you must find another language to post your "Hello World" code.
  • You must post which language it is

For example:

user1 :

Python: print("Hello World!")

user 2 :

Batch Processing: echo Hello World!

user 3 :

Java .......

I start:

Batch Processing:

ECHO Hello World!

P.S. Has anyone tips for the rules? We will run out of languages over time :/

Edited by joppiesaus
Link to comment
Share on other sites

Visual C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World");
Console.ReadLine();
}
}
}

Edited by aceassasin
Link to comment
Share on other sites

[Snip]

+++++ +++++             initialize counter (cell #0) to 10
[                       use loop to set the next four cells to 70/100/30/10/40
    > +++++ ++              add  7 to cell #1
    > +++++ +++++           add 10 to cell #2 
    > +++                   add  3 to cell #3
    > +                     add  1 to cell #4
    > ++++                  add 4 to cell #5
    <<<<< -                  decrement counter (cell #0)
]                   
> ++ .                  print 'H'
> + .                   print 'e'
+++++ ++ .              print 'l'
.                       print 'l'
+++ .                   print 'o'
>>> ++++ .              print ','
<< ++ .                 print ' '

< +++++ +++ .           print 'w'
 ----- --- .            print 'o'
+++ .                   print 'r'
----- - .               print 'l'
----- --- .             print 'd'
> + .                   print '!'
> .                     print '\n'
Edited by James Kerman
Redacted by a moderator
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...