fork download
  1. -- your code goes here
  2. local myclosure = function(a,v)
  3. return a * v
  4. end
  5.  
  6. io.write(myclosure(10,4))
Success #stdin #stdout 0s 4280KB
stdin
Standard input is empty
stdout
40