Skip to content

Instantly share code, notes, and snippets.

@fredreichbier
Created February 7, 2010 02:14
Show Gist options
  • Save fredreichbier/297133 to your computer and use it in GitHub Desktop.
Save fredreichbier/297133 to your computer and use it in GitHub Desktop.
import structs/ArrayList
C: class {
name: String
names: ArrayList<String>
init: func (=name, =names) {
}
test: func {
for(name in names) {
}
}
}
main: func {
c := C new("One", ["Two", "Three"] as ArrayList<String>)
c name println()
c test()
c name println()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment