Skip to content

Instantly share code, notes, and snippets.

@fmpwizard
Created July 14, 2011 02:35
Show Gist options
  • Save fmpwizard/1081848 to your computer and use it in GitHub Desktop.
Save fmpwizard/1081848 to your computer and use it in GitHub Desktop.
/**
* This would normally be a call to your database
*/
object CitiesAndStates {
val cityStateMap=
Map(
1 -> List("Asheville" -> "North Carolina"),
2 -> List("San Francisco" -> "California"),
3 -> List("Boston" -> "Massachusetts")
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment