mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-12 16:15:20 +02:00
14 lines
272 B
Lua
14 lines
272 B
Lua
--
|
|
-- Minimal Development Test
|
|
-- Mod: test
|
|
--
|
|
|
|
|
|
-- Try out PseudoRandom
|
|
pseudo = PseudoRandom(13)
|
|
assert(pseudo:next() == 22290)
|
|
assert(pseudo:next() == 13854)
|
|
|
|
dofile(minetest.get_modpath("test") .. "/player.lua")
|
|
dofile(minetest.get_modpath("test") .. "/formspec.lua")
|