AFL

Arguably Functional Language



AFL Documentation

Command Line Arguments


AFL, when launched via the command line, provides a couple command line arguments. the typical method to run AFL is as follows, but up to 2 command line arguments can be added.

java -jar path/to/AFL.jar

first: debug, followed by an integer between 0 and 4. having debug at a nonzero value will display information about code being parsed, with higher values describing more details. no additional output is produced when code is executed, only when it is parsed.

second: run, followed by any number of file paths. this will have AFL parse and execute each file as AFL code, in sequence.

debug must always come before run, if both are used.