Skip to content

Instantly share code, notes, and snippets.

@notyy
Created January 1, 2012 12:03
Show Gist options
  • Save notyy/1547150 to your computer and use it in GitHub Desktop.
Save notyy/1547150 to your computer and use it in GitHub Desktop.
runable
object Main extends App {
object SearchCodeEnum extends Enumeration {
type SearchCodeValue = Value
val org = Value
val file = Value
}
for(code <- SearchCodeEnum.values) {println(code)}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment