Author Topic: 14 Year Old Programming Prodigy  (Read 6191 times)



Love is illogical boop beep

damn did you guys see him draw that house, I'm so jealous of his drawing skills

-snip-

guis im doge steve jobs give me fre skolar ship
I do et betr

function world();
if keyhit (key_b)
print "Hello world" (40,40)
endif
endfunction

I love this new avatar.

Thanks, John.

So are you just cubelands mark 2 now


Wow, is that seriously how complex java is? You have to do all of that just to get a "Hello World!" output?

forget that.

Java isn't hard. Try Brainforget.

Code: [Select]
+++++ +++++             initialize counter (cell #0) to 10
[                       use loop to set the next four cells to 70/100/30/10
    > +++++ ++              add  7 to cell #1
    > +++++ +++++           add 10 to cell #2
    > +++                   add  3 to cell #3
    > +                     add  1 to cell #4
    <<<< -                  decrement counter (cell #0)
]                   
> ++ .                  print 'H'
> + .                   print 'e'
+++++ ++ .              print 'l'
.                       print 'l'
+++ .                   print 'o'
> ++ .                  print ' '
<< +++++ +++++ +++++ .  print 'W'
> .                     print 'o'
+++ .                   print 'r'
----- - .               print 'l'
----- --- .             print 'd'
> + .                   print '!'
> .                     print '\n'

Java isn't hard. Try Brainforget.

Code: [Select]
+++++ +++++             initialize counter (cell #0) to 10
[                       use loop to set the next four cells to 70/100/30/10
    > +++++ ++              add  7 to cell #1
    > +++++ +++++           add 10 to cell #2
    > +++                   add  3 to cell #3
    > +                     add  1 to cell #4
    <<<< -                  decrement counter (cell #0)
]                   
> ++ .                  print 'H'
> + .                   print 'e'
+++++ ++ .              print 'l'
.                       print 'l'
+++ .                   print 'o'
> ++ .                  print ' '
<< +++++ +++++ +++++ .  print 'W'
> .                     print 'o'
+++ .                   print 'r'
----- - .               print 'l'
----- --- .             print 'd'
> + .                   print '!'
> .                     print '\n'

What the hell...

Wow, is that seriously how complex java is? You have to do all of that just to get a "Hello World!" output?

forget that.
It's not really that complex, most of that was the comments. Why do you need so many comments in a hello world program, anyway?

It's not really that complex, most of that was the comments. Why do you need so many comments in a hello world program, anyway?

Oh.

Oh.

Hello world in C#

Code: [Select]
using System;

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

It's really not that complex.

Hello world in C#

Code: [Select]
using System;

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

It's really not that complex.

Okay...

But a lot of that just seems so unnecessary.

Okay...

But a lot of that just seems so unnecessary.

It's not unnecessary, infact, it makes it easier to read imo. It's organized.