mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
blue book examples
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
float int = 50; // ERROR! Unexpected token: float
|
||||
line(int, 0, int, 100);
|
||||
@@ -0,0 +1,2 @@
|
||||
int line = 50; // This does not create a program error
|
||||
line(line, 0, line, 100); // but it's very confusing
|
||||
Reference in New Issue
Block a user