September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
|
|
@ -5,4 +5,3 @@
|
|||
|
||||
mov r0,#0 @ this comment on end of line
|
||||
mov r1,#0 // authorized comment
|
||||
}
|
||||
|
|
|
|||
2
Task/Comments/BASIC/comments-3.basic
Normal file
2
Task/Comments/BASIC/comments-3.basic
Normal 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
|
||||
|
|
@ -1,4 +1,10 @@
|
|||
// Single line comment, of course!
|
||||
|
||||
/*
|
||||
Multi line comment!
|
||||
*/
|
||||
|
||||
/**
|
||||
Documentation block
|
||||
<doc>can include XML parsed nodes between doc tags</doc>
|
||||
**/
|
||||
|
|
|
|||
6
Task/Comments/Robotic/comments-1.robotic
Normal file
6
Task/Comments/Robotic/comments-1.robotic
Normal 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"
|
||||
1
Task/Comments/Robotic/comments-2.robotic
Normal file
1
Task/Comments/Robotic/comments-2.robotic
Normal file
|
|
@ -0,0 +1 @@
|
|||
. "@NewRobotName"
|
||||
5
Task/Comments/Visual-Objects/comments.vobj
Normal file
5
Task/Comments/Visual-Objects/comments.vobj
Normal 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
|
||||
3
Task/Comments/Xojo/comments.xojo
Normal file
3
Task/Comments/Xojo/comments.xojo
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue