From 5f7395b1e6a27af72a3995a5b058c4162c9e791b Mon Sep 17 00:00:00 2001 From: Siddartha Sekhar Padhi Date: Fri, 6 Oct 2017 21:50:40 +0530 Subject: [PATCH] Hello World in COOL --- hello_world.cl | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello_world.cl diff --git a/hello_world.cl b/hello_world.cl new file mode 100644 index 0000000..a8374f4 --- /dev/null +++ b/hello_world.cl @@ -0,0 +1,6 @@ +(* Hello World in Cool *) +class Main inherits IO{ + main() : Object { + out_string("Hello World\n") + }; +};