Updated Nim for Python Programmers (markdown)

This commit is contained in:
ReneSac 2015-04-03 21:02:03 -03:00
parent e81f3fa79d
commit 3efa9fb6a8
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ Similarities and differences.
Feature | Python | Nim
---------------------|-----------------------------------|-----------------------------------------
Execution model | Virtual Machine | Machine code via C*
Meta-programming | Python (decorators/metaclasses/eval/etc) | Nim (const/when/template/macro)
Execution model | Virtual Machine, JIT | Machine code via C*
Meta-programming | Python (decorators/metaclasses/eval) | Nim (const/when/template/macro)
Memory Management | Garbage-collected | Garbage-collected and manual
Types | Dynamic | Static
Dependent types | - | Partial support