Add in simple CTCE test

This commit is contained in:
Nathan Braswell
2016-07-03 23:07:34 -07:00
parent 067c72f77c
commit cd21e7a1cc
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
3
hello, world

8
tests/test_ctce.krak Normal file
View File

@@ -0,0 +1,8 @@
import io: *
fun main(): int {
var a = #ctce(1+2)
println(a)
println(#ctce("junkhello, world"+4))
return 0
}