September Morn Update

This commit is contained in:
Ingy döt Net 2019-09-12 10:33:56 -07:00
parent 4e2d22a71d
commit aac6731f2c
6856 changed files with 141342 additions and 21127 deletions

View file

@ -5,4 +5,3 @@
mov r0,#0 @ this comment on end of line
mov r1,#0 // authorized comment
}

View file

@ -0,0 +1,2 @@
100 REM Standard BASIC comments begin with "REM" (remark) and extend to the end of the line
110 PRINT "this is code" ! comment after statement

View file

@ -1,4 +1,10 @@
// Single line comment, of course!
/*
Multi line comment!
*/
/**
Documentation block
<doc>can include XML parsed nodes between doc tags</doc>
**/

View file

@ -0,0 +1,6 @@
. "This is a comment line"
. "Print Hello world"
* "Hello world."
. "This is the only way to comment a line in Robotic"

View file

@ -0,0 +1 @@
. "@NewRobotName"

View file

@ -0,0 +1,5 @@
// This is a comment
/* This is a comment */
* This is a comment
&& This is a comment
NOTE This is a commen

View file

@ -0,0 +1,3 @@
// Comments are denoted by a preceding double slash or or single quote
' and continue to the end of the line. There are no multi-line comment blocks
Dim foo As Integer // Comments can also occupy the ends of code lines