Skip to content

Instantly share code, notes, and snippets.

@mplacona
Last active August 29, 2015 13:57
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 mplacona/9389874 to your computer and use it in GitHub Desktop.
Save mplacona/9389874 to your computer and use it in GitHub Desktop.
// Simple Map & Iteration program
void main(){
Map cache = {
'Homepage': '<h1>Swanky Homepage</h1>',
'Contact': '<h1>Talk to me baby</h1>',
'About': '<h1>I\'m a legend</h1>'
};
// And obviously you can iterato through it
cache.forEach((k, v) { print('$k, $v'); });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment