diff options
author | iArnold <arnoldvanh@gmail.com> | 2014-01-30 09:57:20 +0100 |
---|---|---|
committer | iArnold <arnoldvanh@gmail.com> | 2014-01-30 09:57:20 +0100 |
commit | 026dcf7b2f9a5a3159d9d35c0da82b6180034e45 (patch) | |
tree | 936e01a8dbf475b9348ef5da2f5269434f8690d0 /red.html.markdown | |
parent | 2793e0bd48afdf809923ac0bf461fb4153f120ad (diff) |
Update red.html.markdown
minor edits
Diffstat (limited to 'red.html.markdown')
-rw-r--r-- | red.html.markdown | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/red.html.markdown b/red.html.markdown index 6e31eee9..43fe03a6 100644 --- a/red.html.markdown +++ b/red.html.markdown @@ -23,9 +23,10 @@ from any platform to any other platform. And it will do this all from a binary e Ready to learn your first Red? ```Red -All text before the Red header will be treated as comment +All text before the Red header will be treated as comment. The Red header is the word "Red" followed by a whitespace character followed by a block of square brackets []. -The block of brackets can be filled in with useful information about the script or program, the author, the version, the license, what the program does or needs. +The block of brackets can be filled in with useful information about the script or program, the author, +the filename, the version, the license, what the program does or needs. The Red/System header is just like the Red header, only saying "Red/System" and not "Red". Red [] @@ -35,9 +36,7 @@ Red [] print "Hello Red World" ; this is another comment comment { - This is a - multiline - comment. + This is a multiline comment. You just saw the Red version of the "Hello World" program. } |