langs a-z

This commit is contained in:
Ingy döt Net 2013-04-10 22:43:41 -07:00
parent db842d013d
commit d066446780
11389 changed files with 98361 additions and 1020 deletions

View 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 */

View file

@ -0,0 +1,6 @@
// This comment goes up to the end of the line
/* This
is
a
multiline
comment */

View file

@ -0,0 +1,7 @@
/*
NetRexx comment block
*/
-- NetRexx line comment

View file

@ -0,0 +1 @@
; This is a comment

View file

@ -0,0 +1,5 @@
(* This a comment
(* containing nested comment *)
*)
(** This an OCamldoc documentation comment *)

View file

@ -0,0 +1,8 @@
#This is a comment.
# This is other comment.
#~ This is a comment too. ~#
#~ This is a
multi-line
comment ~#

View 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
%}

View file

@ -0,0 +1,6 @@
// This is a single line comment
/*
This comment spans
multiple lines
*/

View file

@ -0,0 +1,4 @@
' Basic line comment
; Assembly code line comment
// C line comment
/* C block comment */

View file

@ -0,0 +1,7 @@
% one line comment
%% often with double "%" because then the indentation is correct in Emacs
/* multi line
comment
*/

View file

@ -0,0 +1,3 @@
# This is a comment
print "Hello\n" # This is also a comment
end

View file

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

View file

@ -0,0 +1 @@
--this is a single line comment

View file

@ -0,0 +1,4 @@
/*
this is a multiline
comment
*/

View file

@ -0,0 +1 @@
v_var number; --this is an end of line comment

View 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 *)

View file

Internal server error - Forgejo: Beyond coding. We Forge.

500

Internal server error

Forgejo version: 11.0.14+gitea-1.22.0

@ -0,0 +1,28 @@
my $x = 2; # Single-line comment.
#`(
Comments beginning with a backtick and one or more
opening bracketing characters are embedded comments.
They can span more than one line
)
my $y = #`{ …or only part of a line. } 3;