Merge pull request #47 from dmand/master

added COOL language
This commit is contained in:
Mike Donaghy
2014-08-17 22:49:28 -04:00

5
c/cool.cl Normal file
View File

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