diff options
author | iArnold <arnoldvanh@gmail.com> | 2014-01-29 21:30:53 +0100 |
---|---|---|
committer | iArnold <arnoldvanh@gmail.com> | 2014-01-29 21:30:53 +0100 |
commit | 9a4a3c084fe34dcade067a6b3582d43b850757dc (patch) | |
tree | 1924e97fb0d48ab031cd6c19d7ea7edecedc3456 /red.html.markdown | |
parent | 22ebe9a9b4d474341882aee8cbc82f63119e42e0 (diff) |
Update red.html.markdown
minor indentation
Diffstat (limited to 'red.html.markdown')
-rw-r--r-- | red.html.markdown | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/red.html.markdown b/red.html.markdown index f91b324b..ceaaf80f 100644 --- a/red.html.markdown +++ b/red.html.markdown @@ -44,11 +44,15 @@ comment { ; assign a value to a variable using a colon ":" my-name: "Red" -reason-for-using-the-colon: {Assigning values using the colon makes the equality sign "=" exclusively usable for comparisons purposes, exactly what "=" was intended for in the first place! Remember this y = x + 1 and x = 1 => y = 2 stuff from school? +reason-for-using-the-colon: {Assigning values using the colon makes + the equality sign "=" exclusively usable for comparisons purposes, + exactly what "=" was intended for in the first place! + Remember this y = x + 1 and x = 1 => y = 2 stuff from school? } is-this-name-valid?: true -; print output using print, or prin for printing without a newline or linefeed at the ; end of the printed text. +; print output using print, or prin for printing without a newline or linefeed at the +; end of the printed text. prin " My name is " print my-name My name is Red |