Updated Nimrod for C programmers (markdown)

This commit is contained in:
Audun Wilhelmsen 2013-12-20 06:00:20 -08:00
parent e5977150ca
commit d598826b51
1 changed files with 7 additions and 0 deletions

View File

@ -9,6 +9,13 @@ The manual provides a more or less complete overview of the language:
http://nimrod-lang.org/manual.html http://nimrod-lang.org/manual.html
### At a glance
<table>
<tr><th>Feature</th><th>C</th><th>Nimrod</th></tr>
<tr><td>Memory Management</td><td>Manual (not counting libraries)</td><td>Garbage-collected and manual</td></tr>
<tr><td> </td><td> </td><td> </td></tr>
</table>
### Structs - Tuples and Objects ### Structs - Tuples and Objects
Tuples and Objects in Nimrod are kind of like structs in C, but not really. Tuples and Objects in Nimrod are kind of like structs in C, but not really.