From 919c64e2de0951890213f88d675763f1efd6fe4e Mon Sep 17 00:00:00 2001 From: Sam Tebbs Date: Wed, 27 May 2015 10:39:46 +0100 Subject: [PATCH] Added the Ash programming language --- a/Ash.ash | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 a/Ash.ash diff --git a/a/Ash.ash b/a/Ash.ash new file mode 100644 index 00000000..696a5a5d --- /dev/null +++ b/a/Ash.ash @@ -0,0 +1,5 @@ +public class Ash { + public static void main(args : String[]) { + println("Hello, world!") + } +}