Added hello-world in COOL language.

This commit is contained in:
Dmitry Andreevich
2012-04-29 13:46:47 +03:00
parent 38f6567c5c
commit ec5b4e483c

5
c/cool.cl Normal file
View File

@@ -0,0 +1,5 @@
class Main inherits IO {
main(): Object {
out_string("Hello, World.\n")
};
};