Y
Hacker News
new
|
ask
|
show
|
jobs
by
Analemma_
2929 days ago
Does this have anything in common with Go besides the language syntax? Is it binary-compatible with Go?
2 comments
zokier
2929 days ago
It seems to compile ("transpile") to Go, and then invoke Go compiler on the generated source. So I guess that would make it also binary compatible?
https://github.com/albrow/fo/blob/master/main.go#L70
link
stansm
2929 days ago
Briefly looking at source one can tell it just transforms Fo into Go and invokes go run
link
https://github.com/albrow/fo/blob/master/main.go#L70