diff options
author | Ori Bernstein <ori@eigenstate.org> | 2015-06-12 12:46:50 -0400 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2015-06-12 14:01:54 -0400 |
commit | 21b91ad9fa7ae830272dc67fbe3150dc30921702 (patch) | |
tree | a674ea3e28f90ba8fa2f4521069a010b4742961e /test/bigliteral.myr | |
parent | 96c8217e913d8d6de22bbb1aa3624c26e66838fc (diff) | |
download | mc-21b91ad9fa7ae830272dc67fbe3150dc30921702.tar.gz |
Move fmt to fmt2.
Shit seems to work.
Diffstat (limited to 'test/bigliteral.myr')
-rw-r--r-- | test/bigliteral.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bigliteral.myr b/test/bigliteral.myr index bd310d6..5a04ffa 100644 --- a/test/bigliteral.myr +++ b/test/bigliteral.myr @@ -1,5 +1,5 @@ use std const main = { - std.put("%l\n", 34359738368 castto(int64)) + std.put("{}\n", 34359738368 castto(int64)) } |