Fully functional now, removing set!, set-idx!, array-with-len, and making concat a builtin. Also, added 2 fun rules to new_kraken that allow nesting of new_kraken and k_prime languages

This commit is contained in:
Nathan Braswell
2021-01-17 19:57:33 -05:00
parent 7d7b2bd6d5
commit 1f8fb59220
4 changed files with 48 additions and 76 deletions

View File

@@ -37,5 +37,13 @@ fun test() {
println("post after + a b" +(a b))
with_import "./import_test.kp":
println("post new impot after + a b" +(a b))
println("We're back baby" \(+ 1 13
(do
(println "hahaha" 'a \{
let a = 75
let b = 75
println("Inside hahaha more HAHAHAA " +(1 2 a b))
"Inside Result"
}) 4)))
}
println("Test result is" test())