diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-05-30 15:23:01 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-05-30 15:23:01 +0100 |
| commit | fec6df65b3306005077ee6124458eaaf3ea7ce2c (patch) | |
| tree | 8610ed974f5229d3f6eb57b9287112b707f19764 /code/demo.odin | |
| parent | 78494e84d59a0b949c6c02d231bca8ba2fcfb1f5 (diff) | |
Use 128-bit integers for ExactValue integers
Diffstat (limited to 'code/demo.odin')
| -rw-r--r-- | code/demo.odin | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/code/demo.odin b/code/demo.odin index c67cee184..0bd23fe2b 100644 --- a/code/demo.odin +++ b/code/demo.odin @@ -1,4 +1,22 @@ #import "fmt.odin"; +#import "sys/wgl.odin"; +#import "sys/windows.odin"; +#import "atomics.odin"; +#import "bits.odin"; +#import "decimal.odin"; +#import "hash.odin"; +#import "math.odin"; +#import "opengl.odin"; +#import "os.odin"; +#import "raw.odin"; +#import "strconv.odin"; +#import "strings.odin"; +#import "sync.odin"; +#import "types.odin"; +#import "utf8.odin"; +#import "utf16.odin"; + + main :: proc() { immutable program := "+ + * - /"; |