mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-21 05:05:00 -07:00
32 lines
454 B
Odin
32 lines
454 B
Odin
import (
|
|
"atomic.odin";
|
|
"fmt.odin";
|
|
"hash.odin";
|
|
"math.odin";
|
|
"mem.odin";
|
|
"opengl.odin";
|
|
"os.odin";
|
|
"sync.odin";
|
|
"utf8.odin";
|
|
)
|
|
|
|
type Byte_Size f64;
|
|
const (
|
|
_ = iota; // ignore first value by assigning to blank identifier
|
|
KB Byte_Size = 1 << (10 * iota);
|
|
// Because there is no type or expression, the previous one is used but
|
|
// with `iota` incremented by one
|
|
MB;
|
|
GB;
|
|
TB;
|
|
PB;
|
|
EB;
|
|
)
|
|
|
|
|
|
proc main() {
|
|
fmt.println("Here");
|
|
|
|
}
|
|
|