Content deleted Content added
m Cleaning up submission (AFCH) |
cleanup |
||
Line 1:
{{AFC submission|||u=Wukuendo|ns=118|ts=20250103143656}} <!-- Do not remove this line! -->
<!-- Note: The following pages were redirects to [[Pony_(programming_language)]] before draftification:
Line 31 ⟶ 29:
At its core, Pony is a systems language designed around safety and performance.
=== Safety ===
* [[Type safety
* [[Memory safety
* [[Exception safety
* Concurrency Safety - The type system employs reference capabilities to ensure (at compile time) that
=== Performance ===
Line 58 ⟶ 43:
===Hello World===
In Pony, instead of a main function, there is a main
<syntaxhighlight lang="pony">
Line 66 ⟶ 51:
</syntaxhighlight>
There are no global variables in Pony, everything must be contained within an instance of a class or an actor.<ref name="kgpony"
==References==
|