| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/Seng3694/CLuaModuleExample/master/scripts/test.lua | [Back] [Original] |
local custommath = require "custommath" local a = 1.1 local b = 2.2 print(tostring(a) .. " + " .. tostring(b) .. " = " .. tostring(custommath.add(a, b))) print(tostring(a) .. " - " .. tostring(b) .. " = " .. tostring(custommath.subtract(a, b))) print(tostring(a) .. " * " .. tostring(b) .. " = " .. tostring(custommath.multiply(a, b))) print(tostring(a) .. " / " .. tostring(b) .. " = " .. tostring(custommath.divide(a, b)))
| Web Proxy Viewer | New URL | Original Page |