fork download
  1. class ClouseArgsSample {
  2. static main (args) {
  3. Closure clo3 = {
  4. println "it : $it"
  5. println "this:" + this
  6. println "owner;" + owner
  7. println "dalagate:" + dalagate
  8. }
  9. clo3.call("暗黙の引数")
  10. }
  11. }
  12.  
Runtime error #stdin #stdout 0.98s 217344KB
stdin
Standard input is empty
stdout
it : ???????????????
this:class ClouseArgsSample
owner;class ClouseArgsSample