Skip to content

Instantly share code, notes, and snippets.

@qpark99
Created May 9, 2014 12:20
Show Gist options
  • Save qpark99/06c55675806620100bbd to your computer and use it in GitHub Desktop.
Save qpark99/06c55675806620100bbd to your computer and use it in GitHub Desktop.
Scala 구구단
(2 to 9).map(i => (1 to 9).map(j => i + "*" + j + "=" + (i * j)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment