langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
6
Task/Comments/NSIS/comments.nsis
Normal file
6
Task/Comments/NSIS/comments.nsis
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# This is a comment that goes from the # to the end of the line.
|
||||
; This is a comment that goes from the ; to the end of the
|
||||
|
||||
/* This is a
|
||||
multi-line
|
||||
comment */
|
||||
6
Task/Comments/Nemerle/comments.nemerle
Normal file
6
Task/Comments/Nemerle/comments.nemerle
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
// This comment goes up to the end of the line
|
||||
/* This
|
||||
is
|
||||
a
|
||||
multiline
|
||||
comment */
|
||||
7
Task/Comments/NetRexx/comments.netrexx
Normal file
7
Task/Comments/NetRexx/comments.netrexx
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
/*
|
||||
|
||||
NetRexx comment block
|
||||
|
||||
*/
|
||||
|
||||
-- NetRexx line comment
|
||||
1
Task/Comments/NewLISP/comments.newlisp
Normal file
1
Task/Comments/NewLISP/comments.newlisp
Normal file
|
|
@ -0,0 +1 @@
|
|||
; This is a comment
|
||||
5
Task/Comments/OCaml/comments.ocaml
Normal file
5
Task/Comments/OCaml/comments.ocaml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
(* This a comment
|
||||
(* containing nested comment *)
|
||||
*)
|
||||
|
||||
(** This an OCamldoc documentation comment *)
|
||||
8
Task/Comments/Objeck/comments.objeck
Normal file
8
Task/Comments/Objeck/comments.objeck
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#This is a comment.
|
||||
# This is other comment.
|
||||
|
||||
#~ This is a comment too. ~#
|
||||
|
||||
#~ This is a
|
||||
multi-line
|
||||
comment ~#
|
||||
7
Task/Comments/Octave/comments.octave
Normal file
7
Task/Comments/Octave/comments.octave
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# I am a comment till the end of line
|
||||
% I am a comment till the end of line
|
||||
|
||||
%{
|
||||
This comment spans
|
||||
multiple lines
|
||||
%}
|
||||
6
Task/Comments/Openscad/comments.scad
Normal file
6
Task/Comments/Openscad/comments.scad
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
// This is a single line comment
|
||||
|
||||
/*
|
||||
This comment spans
|
||||
multiple lines
|
||||
*/
|
||||
4
Task/Comments/OxygenBasic/comments.oxy
Normal file
4
Task/Comments/OxygenBasic/comments.oxy
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
' Basic line comment
|
||||
; Assembly code line comment
|
||||
// C line comment
|
||||
/* C block comment */
|
||||
7
Task/Comments/Oz/comments.oz
Normal file
7
Task/Comments/Oz/comments.oz
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
% one line comment
|
||||
|
||||
%% often with double "%" because then the indentation is correct in Emacs
|
||||
|
||||
/* multi line
|
||||
comment
|
||||
*/
|
||||
3
Task/Comments/PASM/comments.pasm
Normal file
3
Task/Comments/PASM/comments.pasm
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# This is a comment
|
||||
print "Hello\n" # This is also a comment
|
||||
end
|
||||
1
Task/Comments/PL-I/comments.pli
Normal file
1
Task/Comments/PL-I/comments.pli
Normal file
|
|
@ -0,0 +1 @@
|
|||
/* This is a comment. */
|
||||
1
Task/Comments/PL-SQL/comments-1.sql
Normal file
1
Task/Comments/PL-SQL/comments-1.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
--this is a single line comment
|
||||
4
Task/Comments/PL-SQL/comments-2.sql
Normal file
4
Task/Comments/PL-SQL/comments-2.sql
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
/*
|
||||
this is a multiline
|
||||
comment
|
||||
*/
|
||||
1
Task/Comments/PL-SQL/comments-3.sql
Normal file
1
Task/Comments/PL-SQL/comments-3.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
v_var number; --this is an end of line comment
|
||||
10
Task/Comments/Pascal/comments.pascal
Normal file
10
Task/Comments/Pascal/comments.pascal
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
(* This is a comment.
|
||||
It may extend across multiple lines. *)
|
||||
|
||||
{ Alternatively curly braces
|
||||
can be used. }
|
||||
|
||||
(* This is a valid comment in Standard Pascal,
|
||||
but not valid in [[Turbo Pascal]]. }
|
||||
|
||||
{ The same is true in this case *)
|
||||
28
Task/Comments/Perl-6/comments.pl6
Normal file
28
Task/Comments/Perl-6/comments.pl6
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
my $x = 2; # Single-line comment.
|
||||
|
||||
#`( | ||||