Block Expressions and give

This commit is contained in:
Ginger Bill
2016-12-30 15:45:10 +00:00
parent d714bece47
commit 23d32f34e5
12 changed files with 605 additions and 106 deletions

View File

@@ -12,8 +12,8 @@ import {
}
proc main() {
var x = ~(0 as u32);
var y = x << 32;
fmt.println(y);
var a, b, c = {
give 1, 2, 123*321;
};
fmt.println(a, b, c);
}