From 4a45d5c35d35437f9e7632e754ade056bbc46e37 Mon Sep 17 00:00:00 2001 From: Grzegorz Antoniak Date: Fri, 20 May 2016 13:54:52 +0200 Subject: [PATCH] Added `batsh.batsh` file in Batsh language. Batsh is a language that compiles to bash scripts or Windows batch files (.bat). This allows to run the resulting script without any dependencies on target platform. More info about batsh: http://batsh.org/ https://github.com/BYVoid/Batsh --- b/batsh.batsh | 1 + 1 file changed, 1 insertion(+) create mode 100644 b/batsh.batsh diff --git a/b/batsh.batsh b/b/batsh.batsh new file mode 100644 index 00000000..9d60f575 --- /dev/null +++ b/b/batsh.batsh @@ -0,0 +1 @@ +println("Hello world");