Nathan Braswell's Current Programming Language / Compiler Research

Repository: https://github.com/limvot/kraken

Try it:


; Of course ; Load for prelude so we get fun, lambda, if, quoting, etc ;(load-file "./k_prime_stdlib/prelude.kp") ; Load for method to get nicer lambda, objects, blocks, string interplation ;(load-file "./k_prime_stdlib/method.kp") (println "Hello World") ; Just print 3 (println "Math works:" (+ 1 2))

Output: