From: Michael Andreen Date: Tue, 28 Feb 2006 08:56:36 +0000 (+0000) Subject: b not in scope X-Git-Url: https://ruin.nu/git/?p=proglang.git;a=commitdiff_plain;h=97b7064110b10d38c0f75502d08a95550a9a04ba b not in scope --- diff --git a/examples/typeerror-scope b/examples/typeerror-scope new file mode 100644 index 0000000..d35bd74 --- /dev/null +++ b/examples/typeerror-scope @@ -0,0 +1,7 @@ +int a = readInt; + +if (a > 5){ + bool b = true; +} + +print b;