mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-22 13:44:59 -07:00
Library names - Only link with used foreign libraries
This commit is contained in:
+1
-14
@@ -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");
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user