Jump to content

Arena storage pool: Difference between revisions

m
→‎{{header|Raku}}: Fix Perl 6 -> Raku
(Rename Perl 6 -> Raku, alphabetize, minor clean-up)
m (→‎{{header|Raku}}: Fix Perl 6 -> Raku)
Line 780:
=={{header|Raku}}==
(formerly Perl 6)
 
Perl 6Raku is a high level language where, to a first approximation, everything is an object. Perl 6Raku dynamically allocates memory as objects are created and does automatic garbage collection and freeing of memory as objects go out of scope. There is almost no high level control over how memory is managed, it is considered to be an implementation detail of the virtual machine on which it is running.
 
If you absolutely must take manual control over memory management you would need to use the foreign function interface to call into a language that provides the capability, but even that would only affect items in the scope of that function, not anything in the mainline process.
10,349

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.