Hacker News new | ask | show | jobs
by oregontechninja 2997 days ago
Just compiling the file. That's what I'm having trouble with. Is it the same method as normal Red scripts? Is there a compiler flag I need, or just the opening Red/System [] in the source? That's the part that is rough for me. Just a simple Red/System vs Red hello world (including compiler instructions) would be of great help.
1 comments

Uhm...

Red:

    Red []
    print "hello world"
Red/System:

    Red/System []
    print "hello world"
Both are compiled with ./red -c file. "Rough", you say?