Many bits of Atomo are written in Atomo, including Eco (the package manager), the REPL, and so on... http://darcsden.com/alex/atomo/browse/prelude/
Are there any languages out there that are, or virtually are, written entirely in themselves?
Atomo, the programmer's programmable programming language
21–30 of 37 posts
Re: Atomo, the programmer's programmable programming language
#22Here's what I needed to do to install and run Atomo under (latest) Ubuntu: $ sudo apt-get install haskell-platform libghc6-terminfo-dev $ cabal update $ cabal install atomo $ ~/.cabal/bin/atomo > 1 + 1 2
Re: Atomo, the programmer's programmable programming language
#23Earlier quoted context omitted.
Are there any languages out there that are, or virtually are, written entirely in themselves?
Squeak, for example, has its VM quite literally written in a subset of itself called Slang, which translates to C: http://ftp.squeak.org/docs/OOPSLA.Squeak.html Also, most Lisps (especially Scheme) have a relatively small core written in C for bootstrapping, and the rest of the language is written in itself.
Re: Atomo, the programmer's programmable programming language
#24Re: Atomo, the programmer's programmable programming language
#25Many bits of Atomo are written in Atomo, including Eco (the package manager), the REPL, and so on... http://darcsden.com/alex/atomo/browse/prelude/
Are there any languages out there that are, or virtually are, written entirely in themselves?
Re: Atomo, the programmer's programmable programming language
#26Many bits of Atomo are written in Atomo, including Eco (the package manager), the REPL, and so on... http://darcsden.com/alex/atomo/browse/prelude/
Are there any languages out there that are, or virtually are, written entirely in themselves?
Re: Atomo, the programmer's programmable programming language
#27Re: Atomo, the programmer's programmable programming language
#28Very cool - you mention Slate, are you in contact with Brian Rice? Because if not you should be.
Re: Atomo, the programmer's programmable programming language
#29Many bits of Atomo are written in Atomo, including Eco (the package manager), the REPL, and so on... http://darcsden.com/alex/atomo/browse/prelude/
Are there any languages out there that are, or virtually are, written entirely in themselves?
Re: Atomo, the programmer's programmable programming language
#30Many bits of Atomo are written in Atomo, including Eco (the package manager), the REPL, and so on... http://darcsden.com/alex/atomo/browse/prelude/
Are there any languages out there that are, or virtually are, written entirely in themselves?
It had a handful of assembler code to bootstrap it, and from there it built upon itself