mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-23 14:14:59 -07:00
11 lines
189 B
Odin
11 lines
189 B
Odin
#import "fmt.odin"
|
|
#import "utf8.odin"
|
|
#import "hash.odin"
|
|
|
|
main :: proc() {
|
|
s := "Hello"
|
|
fmt.println(s,
|
|
utf8.valid_string(s),
|
|
hash.murmur64(s.data, s.count))
|
|
}
|