aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
Diffstat (limited to 'code')
-rw-r--r--code/demo.odin6
1 files changed, 2 insertions, 4 deletions
diff --git a/code/demo.odin b/code/demo.odin
index 3912fb9f1..2bc59bdc8 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -15,8 +15,6 @@ variadic :: proc(args: ..any) {
main :: proc() {
fmt.println("Hellope, everybody!")
-
-
variadic(1 as u128,
1 as i128,
)
@@ -38,8 +36,8 @@ main :: proc() {
z = x | y; fmt.println("x | y", z)
z = x &~ y; fmt.println("x &~ y", z)
- z = -x
- z = ~x
+ z = -x; fmt.println("-z", z)
+ z = ~x; fmt.println("~z", z)
b: bool
b = x == y; fmt.println("x == y", b)