-
Notifications
You must be signed in to change notification settings - Fork 0
Known Issues
John Wilkes edited this page Mar 13, 2022
·
31 revisions
Note: Need to research how precedence and associativity differs from order of evaluation.
C++ links describing the 2:
var x i64 = 123456789123456789123456789;
# This will not compile
var a i8 = !200;
# This will not compile
var err i8 = -128;
for i in r { }
# This will not compile
struct S { }
const SPtr = &S;
# This will not compile
var s = StructTypes[0] { };
Evaluate constants instead of generating IR
# This prints 0 instead of -46
printi(cast(i8, 1234.0));