Just another update

This commit is contained in:
Ingy döt Net 2015-02-20 00:35:01 -05:00
parent a25938f123
commit 00a190b0a6
6591 changed files with 94363 additions and 23227 deletions

View file

@ -1,4 +1,5 @@
All ways to include text in a language source file that's completely ignored by the compiler or interpreter.
All ways to include text in a language source file
that's completely ignored by the compiler or interpreter.
'''See Also:'''<br>
* Related Task: [[Documentation]]

View file

@ -1,2 +1,4 @@
---
category:
- Initialization
note: Basic language learning

View file

@ -1,5 +1,6 @@
* An asterisk in column one denotes a comment line
* Comments may also follow any syntactically complete instruction:
NOP This is a comment (after a NOP instruction)
LA 1,0 Comment
NOP Comment (after a NOP instruction)
* Comments after instructions with omitted operands require a comma ","
END , Comment (without comma, "Comment" assumed an operand of "END")
END , Comment (without comma, "Comment" assumed an operand of "END")

View file

@ -0,0 +1,4 @@
'COMMENT' this is a first comment;
'COMMENT'
****** this is a second comment ******
;

View file

@ -0,0 +1,8 @@
begin
comment a comment;
% another comment
;
% and
another
%
end this_word_is_also_a_comment.

View file

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

View file

@ -0,0 +1 @@
# single line comment

View file

@ -0,0 +1 @@
/* This is also a comment line (/* in columns 1-3)

View file

@ -0,0 +1,6 @@
(* this is a comment *)
(*
and this is a
multiline comment
(* with a nested comment *)
*)

View file

@ -0,0 +1,3 @@
/*
This is a multiline comment.
*/

View file

@ -0,0 +1 @@
SELECT * FROM mytable -- Selects all columns and rows

View file

@ -0,0 +1,2 @@
-- Selects all columns and rows
SELECT * FROM mytable

View file

@ -0,0 +1,2 @@
SELECT * FROM mytable
-- Selects all columns and rows

View file

@ -0,0 +1,2 @@
// this is a comment
i=i+1 // this is a comment

View file

@ -0,0 +1 @@
COMMENT This is a comment for Simula 67;

View file

@ -0,0 +1 @@
//This is a one line comment. There are no other commenting options in TorqueScript.

View file

@ -0,0 +1 @@
' This is a VBA comment

View file

@ -0,0 +1 @@
' This is a VBScript comment

View file

@ -0,0 +1,2 @@
let a = 4 " A valid comment
echo "foo" " Not a comment but an argument that misses the closing quote