From ba032a907e6688c4c84f8e550838f90238cdd196 Mon Sep 17 00:00:00 2001 From: Sebastian Blessing Date: Fri, 8 May 2015 14:28:57 +0200 Subject: [PATCH] added hello-world for Pony (http://www.ponylang.org) --- p/pony.pony | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 p/pony.pony diff --git a/p/pony.pony b/p/pony.pony new file mode 100644 index 00000000..8ec0000a --- /dev/null +++ b/p/pony.pony @@ -0,0 +1,3 @@ +actor Main + new create(env: Env) => + env.out.print("Hello World")