Initial commit
[ndeql_lang.git] / README
blob5d5f12806adae25e4d44279a67a06ce67185bf6b
1 This is an interpreter for Ndeql (see http://esolangs.org/wiki/Ndeql
2 ). It has not been extensively tested, but doesn't seem to have any
3 terrible bugs.
5 $ make
6 $ ./ndeql examples/truth1.ndq
8 Of note to those interested in proving computational class, defining
9 LESS_PROBLEMATIC while compiling will cause the interpreter to follow
10 Koen's suggestion
12 > Another, less problematic version of the BEGIN instruction could be
13 > "If no variable is nonzero, skip to the matching END."
15 The two variations of truth in the examples directory illustrate this:
16 truth1.ndq will probably work with the standard interpreter, but
17 there's always a chance it won't. truth2.ndq will probably not work
18 with the standard interprete, but there's always a chance it
19 will. Both files, however, will always work with a less problematic
20 interpreter.