diff options
Diffstat (limited to 'code')
| -rw-r--r-- | code/demo.odin | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/code/demo.odin b/code/demo.odin index a4081e139..6d57f5440 100644 --- a/code/demo.odin +++ b/code/demo.odin @@ -9,14 +9,8 @@ #import "sync.odin"; #import "utf8.odin"; -T :: struct { x, y: int }; -thread_local t: T; main :: proc() { - immutable using t := T{123, 321}; - fmt.println(t); - - // foo :: proc(x: ^i32) -> (int, int) { // fmt.println("^int"); // return 123, int(x^); |