mirror of
https://github.com/minetest/minetest.git
synced 2024-11-13 03:03:44 +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")
|