about summary refs log tree commit diff stats
path: root/lua/chupacabra
Commit message (Collapse)AuthorAgeFilesLines
* *elioat2024-06-151-0/+2
|
* *elioat2024-06-092-7/+7
|
* *elioat2024-06-091-1/+1
|
* *elioat2024-06-095-42/+27
|
* *elioat2024-06-091-1/+13
|
* *elioat2024-06-093-10/+9
|
* *elioat2024-06-092-2/+5
|
* *elioat2024-06-092-11/+25
|
* *elioat2024-06-091-1/+7
|
* *elioat2024-06-091-3/+15
|
* *elioat2024-06-092-15/+44
|
* *elioat2024-06-093-4/+28
|
* *elioat2024-06-093-1/+8
|
* *elioat2024-06-093-1/+5
|
* *elioat2024-06-094-2/+48
|
* *elioat2024-06-091-1/+2
|
* *elioat2024-06-092-3/+8
|
* *elioat2024-06-092-22/+45
|
* *elioat2024-06-091-0/+1
|> <meta name="colorscheme" content="minimal"> <style type="text/css"> <!-- pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; } body { font-family: monospace; color: #eeeeee; background-color: #080808; } * { font-size: 1.05em; } .muRecipe { color: #ff8700; } .Comment { color: #9090ff; } .Constant { color: #00a0a0; } .Special { color: #ff6060; } --> </style> <script type='text/javascript'> <!-- --> </script> </head> <body> <pre id='vimCodeElement'> <span class="Comment"># example program: creating and using global variables</span> <span class="muRecipe">recipe</span> main [ <span class="Comment"># allocate 5 locations for globals</span> <span class="Constant">global-space</span>:address:array:location<span class="Special"> &lt;- </span>new <span class="Constant">location:type</span>, <span class="Constant">5</span> <span class="Comment"># read to globals by using /space:global</span> <span class="Special">1:number/space:global</span><span class="Special"> &lt;- </span>copy <span class="Constant">3</span> foo ] <span class="muRecipe">recipe</span> foo [ <span class="Comment"># ditto for writing to globals</span> $print <span class="Special">1:number/space:global</span> ] </pre> </body> </html> <!-- vim: set foldmethod=manual : -->