aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
Diffstat (limited to 'code')
-rw-r--r--code/demo.odin15
1 files changed, 1 insertions, 14 deletions
diff --git a/code/demo.odin b/code/demo.odin
index 38ed7a94a..88aa651c0 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -9,21 +9,8 @@
#import "sync.odin";
#import "utf8.odin";
-
main :: proc() {
- b : [1000]byte;
-
- using fmt;
-
- println();
- println("Pointer of Address 0");
- println(^b[0]);
- println();
- println("Pointer of Address 50");
- println(^b[50]);
- println();
- println("Difference between 50 and 0");
- println(^b[50] - ^b[0]);
+ fmt.println("GOOGOLPLEX");
}
/*