73fb6e6b588697d4f6293528e77d95844d74ab0b
[oweals/minetest.git] / games / minimal / mods / test / init.lua
1 --
2 -- Minimal Development Test
3 -- Mod: test
4 --
5
6
7 -- Try out PseudoRandom
8 pseudo = PseudoRandom(13)
9 assert(pseudo:next() == 22290)
10 assert(pseudo:next() == 13854)
11
12 dofile(minetest.get_modpath("test") .. "/player.lua")
13 dofile(minetest.get_modpath("test") .. "/formspec.lua")