Update Standard Library; Fix Type_Info for integers

This commit is contained in:
Ginger Bill
2016-09-28 00:07:03 +01:00
parent 6088cbeddb
commit 5f6b0942f4
12 changed files with 175 additions and 158 deletions
+6 -1
View File
@@ -1,5 +1,10 @@
#import "fmt.odin"
#import "utf8.odin"
#import "hash.odin"
main :: proc() {
fmt.println("Hello")
s := "Hello"
fmt.println(s,
utf8.valid_string(s),
hash.murmur64(s.data, s.count))
}