mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-06 21:17:40 +00:00
Block Expressions and give
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user