Skip to content

Instantly share code, notes, and snippets.

@sourcerebels
Created July 30, 2011 21:21
Show Gist options
  • Save sourcerebels/1116015 to your computer and use it in GitHub Desktop.
Save sourcerebels/1116015 to your computer and use it in GitHub Desktop.
class TestArrayAsVarArgs {
static saludar(def numero, String[] nombres) {
println "Numero " + numero
for (nombre in nombres) {
println "Hola " + nombre
}
}
static main(args) {
saludar(3, "nombre1", "nombre2", "nombre3")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment