From 36b796c3689c558f77a00a889636872eb06a1fa4 Mon Sep 17 00:00:00 2001 From: Outie Dorfling Date: Mon, 30 Oct 2017 19:56:22 +0200 Subject: [PATCH] Added Action Code Script --- hello_world/acs_saysHello.acs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello_world/acs_saysHello.acs diff --git a/hello_world/acs_saysHello.acs b/hello_world/acs_saysHello.acs new file mode 100644 index 0000000..433d5cf --- /dev/null +++ b/hello_world/acs_saysHello.acs @@ -0,0 +1,8 @@ +#include "zcommon.acs" + +script 1 ENTER +{ + print(s:"Hello World!"); +} + +