mirror of
https://github.com/dyne/FreeJ.git
synced 2026-06-09 00:49:56 +02:00
ae7b1ad056
processing-js 0.4 has been merged in some relevant parts basic and topic scripts added for test color handling fixed, more scripts show up now
11 lines
416 B
Plaintext
11 lines
416 B
Plaintext
// The size function is a statement that tells the computer
|
|
// how large to make the window.
|
|
// Each function statement has zero or more parameters.
|
|
// Parameters are data passed into the function
|
|
// and used as values for specifying what the computer will do.
|
|
size(200, 200);
|
|
|
|
// The background function is a statement that tells the computer
|
|
// which color to make the background of the window
|
|
background(102);
|