comparison baum.1 @ 51:7d7abe88e71b

"input" node is now "create" node and can handle more than user input now
author meillo@marmaro.de
date Sun, 02 Mar 2008 16:17:18 +0100
parents f9fc4c4f9e3d
children 201b4603671a
comparison
equal deleted inserted replaced
50:0870e261bf28 51:7d7abe88e71b
1 .TH baum 1 "2008-03-01" "baum 0.3" 1 .TH baum 1 "2008-03-01" "baum 0.4"
2 .SH NAME 2 .SH NAME
3 baum \- an esoteric programming language 3 baum \- an esoteric programming language
4 4
5 5
6 6
72 72
73 73
74 .SH NODES 74 .SH NODES
75 75
76 .TP 76 .TP
77 .B input 77 .B create
78 Reads a number from standard input which is treated as ASCII value. It inserts a number node with this value as last brother. Returns 0 always. 78 Creates a new number node as last brother. The value of the new node is ether read from standard input (if the node has no son), or the return value of the first son. Returns 0 always.
79 79
80 .TP 80 .TP
81 .B number 81 .B number
82 Executes it's leftmost son. Returns the internal value. 82 Executes it's leftmost son. Returns the internal value.
83 83