Draft:Odin (programming language): Difference between revisions

Content deleted Content added
Added included libraries to introduction
memory management section
Line 64:
}
</syntaxhighlight>
 
=== Memory management ===
Memory is manually managed in Odin. The language has built-in support for custom allocators. Custom allocators can be passed to called procedures by assigning <syntaxhighlight inline=1>context.allocator</syntaxhighlight> with the desired allocator. <ref>{{Cite web |last=Zhiyanov |first=Anton |date=2023-07-31 |title=Trying Odin (with a playground) |url=https://antonz.org/trying-odin/ |access-date=2023-11-27 |website=antonz.org |language=en}}</ref>
 
=== Explicit procedure overloading ===