blue book examples

This commit is contained in:
benfry
2011-01-26 20:26:16 +00:00
parent a5fb67810a
commit cd888bc239
927 changed files with 36898 additions and 0 deletions
@@ -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