/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/lua/value/runme.lua
30 строк
727 B
Erez Geva
More Lua tests (#3405)
31 май 2026, 17:09
31 май 2026, 17:09
a1b3ca8
Код
Авторство
О чём код?
require("example") -- Create a couple of a vectors local v = example.new_Vector(1, 2, 3) local w = example.new_Vector(10, 11, 12) print("I just created the following vectors") example.vector_print(v) example.vector_print(w) -- Now call some of our functions print("\nNow I'm going to compute the dot product") local d = example.dot_product(v,w) print(string.format("dot product = %d (should be 68)", d)) -- Add the vectors together print("\nNow I'm going to add the vectors together") local r = example.vector_add(v,w) example.vector_print(r) print("The value should be (11, 13, 15)") -- Now I'd better clean up the return result r print("\nNow I'm going to clean up the return result") example.free(r) print("Good")