Skip to content

A Lisp dialect which compiles directly to Go source code

Notifications You must be signed in to change notification settings

yi-jiayu/jolang

Repository files navigation

jolang

A Lisp dialect which compiles directly to Go source code

About

Jolang is an experiment with producing a Lisp dialect which compiles directly to Go source code.

Examples

minimal.jo:

(package main)

(func main () (println "Hello, World"))

minimal.go:

package main

func main() {
	println("Hello, World")
}

integers.jo:

(package main)

(func main () (println "this is an integer" 1))

integers.go:

package main

func main() {
	println("this is an integer", 1)
}

About

A Lisp dialect which compiles directly to Go source code

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages