local module_2 = require "module_2" local test1 = module_2.new(50,1) local test2 = module_2.new(100,2) test1:pp() -- コロンを使うことで引数のselfを省略出来る、test1.pp(test1)と同じ意味 test2:pp()