Mercurial > baum
view baum.1 @ 42:233ac9bea4f1
switched exit code 127 to 126 (because shell returns 127 if command not found)
author | meillo@marmaro.de |
---|---|
date | Sat, 01 Mar 2008 20:41:35 +0100 |
parents | 29172b6e802a |
children | c7dca4a1dc37 |
line wrap: on
line source
.TH baum 1 "2008-03-01" "baum 0.3" .SH NAME baum \- an esoteric programming language .SH SYNOPSIS .B baum [\-v]\ <file> .SH DESCRIPTION .B baum is an interpreter for the baum programming language which is an experiment to create an esoteric programming language. Source code is a representation of a tree in which every node is a command or data. baum is only an experiment and the functionality is (currently) very restricted. .SH OPTIONS .TP .BI \-v Verbose output (All verbose output goes to stderr) .TP .BI \-\-help Print usage information .TP .BI \-\-version Print version information .SH SOURCE CODE Source code are plain text files with one node per line representing the tree. The indention controls in which level in the tree the node is. Indention can be made with SPACE or with TAB characters. Every character means one level. Empty lines and everything vom the hash symbol (`#') to the end of the line is ignored. .B An example that echoes (and returns) `42': .nf # comment print(0) sum(0) #comment number(40) number(2) .fi .SH CONCEPT baum programs are represented as nodes in a tree structure. Nodes are of specific kind and contain a value. The tree is processed recursive starting at the root node. Every node controls it's sons and should only know them; while most nodes only use their leftmost son. Each node returns a value to it's parent. (The root node returns an exit code to the shell.) The internal value of the node could be used in any useful way, but only inside the node. All values in the language (return values, expected return values and in-node values) should be of the same type, so that every combination of nodes is possible. Nodes can modify the tree, but should do this only on it's brothers or better only through it's rightmost brother. .SH ERRORS .TP .BI 1 common error .TP .BI 3 no or more than one source file given .TP .BI 4 invalid node .TP .BI 5 indention over more than one level .TP .BI 6 node name too long, or no value given .TP .BI 126 invalid command line options .SH BUGS Please report if you find some. .SH CREDITS Ju developed the idea of .B baum with me in a conversation. Actually it was his idea to use the tree as basic structure. .SH AUTHOR markus schnalke <meillo@marmaro.de> and julian forster