​My first post on papy

​Just for a try on that amazing decentralized blog posts.

local m,c = 1,2 local line = function(x) return m*x + c end print(line(0)) -- 2 print(line(1)) -- 3 function call(f,x) return f(x) end print(call(line,1)) --3