Action Code Script is a programming language created in 2004.
#1791on PLDB | 20Years Old |
Action Code Script (ACS) is a scripting language used in video games such as HeXen and some modern Doom source ports, such as ZDoom. It is syntactically similar to C, but less flexible. As its name implies, most of the core logic for script functionality comes in the form of "scripts", which are traditionally identified with a numerical value. Read more on Wikipedia...
1 // Similar to C's stdio.h, ACS has its own library of basic functions
2 #include "zcommon.acs"
3
4 script 1 ENTER
5 {
6 print(s:"Hello World!");
7 }
Feature | Supported | Example | Token |
---|---|---|---|
Print() Debugging | ✓ | ||
Comments | ✓ | // A comment | |
Line Comments | ✓ | // A comment | // |
Semantic Indentation | X |