Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created May 28, 2014 17:40
Show Gist options
  • Save jerstlouis/a7ea03ddea472db9f8ba to your computer and use it in GitHub Desktop.
Save jerstlouis/a7ea03ddea472db9f8ba to your computer and use it in GitHub Desktop.
class App : Application
{
Map<const String, const String> m { };
void Test()
{
char key[256] = "Foo";
char value[256] = "Bar";
m.Add({ key, value });
}
void Main()
{
Test();
for(i : m) PrintLn("[", &i, "] = ", i);
system("pause");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment