From b2310d29263a13d03f55423f6c352baeb6692dbd Mon Sep 17 00:00:00 2001 From: Chathura Kudahetti Date: Sat, 21 May 2016 22:25:42 +0530 Subject: [PATCH] ceylon.ceylon Hello World in Ceylon programming language. The code is from http://ceylon-lang.org/documentation/1.2/tour/basics/ --- c/ceylon.ceylon | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 c/ceylon.ceylon diff --git a/c/ceylon.ceylon b/c/ceylon.ceylon new file mode 100644 index 00000000..e61a53b5 --- /dev/null +++ b/c/ceylon.ceylon @@ -0,0 +1,3 @@ +shared void hello() { + print("Hello, World!"); +}