Empty program: Difference between revisions

Content added Content deleted
imported>Tromp
(Add bruijn)
Line 338: Line 338:
Pressing enter from the mged prompt, just returns another prompt, so I suppose that is the smallest possible program. However, before we can draw anything we at least need to open a database:
Pressing enter from the mged prompt, just returns another prompt, so I suppose that is the smallest possible program. However, before we can draw anything we at least need to open a database:
<syntaxhighlight lang="mged">opendb empty.g y</syntaxhighlight>
<syntaxhighlight lang="mged">opendb empty.g y</syntaxhighlight>

=={{header|Bruijn}}==
The smallest program in bruijn is the the identity function (\x.x) and returns its input:

<syntaxhighlight>main [0]</syntaxhighlight>


=={{header|C}}==
=={{header|C}}==