From 63071acf3ad554d88fca7afb829a63445723cae9 Mon Sep 17 00:00:00 2001 From: Sean Baggaley Date: Sat, 30 Apr 2016 18:31:10 +0100 Subject: [PATCH] Add "Hello, World!" in Action Code Script (Uses ZDoom header, but should work in Hexen too) --- a/acs.acs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 a/acs.acs diff --git a/a/acs.acs b/a/acs.acs new file mode 100644 index 00000000..f4d9c38b --- /dev/null +++ b/a/acs.acs @@ -0,0 +1,6 @@ +#include "zcommon.acs" + +Script 1 OPEN +{ + Print(s: "Hello, world!"); +}