I think the title is self explanatory.
+1 or -1 for the groaner?
John Kugelman
2010-07-25 01:56:48
I was really expecting it to be written in Go, after being compiled the first time.
Cawas
2010-08-19 18:20:15
+20
A:
Programming languages aren't programs, hence they're not "written" in any language. They are often described by formal grammars (e.g. BNF).
Interpreters and compilers for programming languages are programs and so must be written in some kind of programming language.
Go has at least two compilers, gc
and gccgo
. The former is written in C, while the latter is a gcc frontend written mainly in C++. Go's libraries are written in Go.
Artelius
2010-07-25 01:58:19