zkribe Wiki
zkribe is a procedural/oo programming language
Status: Alpha
Brought to you by:
makinext
zkribe is a procedural/object oriented language with the following targets:
This is a hello world program:
1 module test
2
3 defun fmain
4 out.println( "Hello, world!" )
5 end
I am developing it and have a working version, developed in Java, that I am polishing to publication. I would like to provide a product as error free and robust as possible. In this first version I will decide the final language, obtaining feedback in the developing process of the language itself and the runtime library.
After that, I want to develop the 1.0 version of the compiler, written in the language itself. This would probe the validity of the decisions taken.
Administrator: