Contact: aviboots(AT)netvision.net.il
39,850 questions
51,771 answers
573 users
show = function(n) print("n =",n) end function add(n1, n2, fshow) fshow(n1 + n2) end add(5, 8, show) --[[ run: n = 13 --]]