Reference for the BALTENSPERGER programming language, an art project of Stefan Baltensperger

Name

// (comment)

Examples
// Draws two lines which divides the window
// into four quadrants
Linie(0, 50, 100, 50);  // Draw the horizontal line
Linie(50, 0, 50, 100);  // Draw the vertical line
Description Explanatory notes embedded within the code. Comments are used to remind yourself and to inform others about the details of the code. Single-line comments are signified with the two forward slash characters. Comments are ignored by the compiler.
Syntax
// comment
Parameters
comment any sequence of characters
Usage Web & Application
Related /* */ (multiline comment)
/** */ (doc comment)
Stefan Baltensperger 2009

Creative Commons License