From e3e16f5d051c2b941d5e4ee1a64b235286a85cdf Mon Sep 17 00:00:00 2001 From: Ginger Bill Date: Thu, 26 Jan 2017 20:00:16 +0000 Subject: Library names - Only link with used foreign libraries --- code/demo.odin | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) (limited to 'code') 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"); } /* -- cgit v1.2.3