Skip to content

Instantly share code, notes, and snippets.

@jnthn
Created September 8, 2014 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnthn/dbe4e347cc092fa8cf62 to your computer and use it in GitHub Desktop.
Save jnthn/dbe4e347cc092fa8cf62 to your computer and use it in GitHub Desktop.
class A {
submethod DESTROY() {
say "HELP I'M DYING!";
}
}
for ^20 {
# Make an A
A.new;
# Make some junk to caues a GC
for ^100000 { $++ }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment