mirror of
https://github.com/minetest/minetest.git
synced 2025-01-04 20:37:31 +01: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")
|