Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created October 2, 2016 19:18
Show Gist options
  • Save jerstlouis/f88498463b424ef13d6db8836c9628ca to your computer and use it in GitHub Desktop.
Save jerstlouis/f88498463b424ef13d6db8836c9628ca to your computer and use it in GitHub Desktop.
class Foo { }
class App : Application
{
void Main()
{
Array<Foo> a { };
Array<Foo> b { };
Foo foo { };
a.Add(foo);
b.Add(foo);
a.Free();
b.Free();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment