deprecate perl version, make go version the new one (2.0.0)

This commit is contained in:
2023-11-01 17:55:22 +01:00
parent 19b8aa7883
commit 093591314a
15 changed files with 1157 additions and 199 deletions

17
test.lua Normal file
View File

@@ -0,0 +1,17 @@
function add(a,b)
return a + b
end
function test(a)
return a
end
function parallelresistance(a,b)
return 1.0 / (a * b)
end
function init()
register("add", 2, "addition")
register("test", 1, "test")
register("parallelresistance", 2, "parallel resistance")
end