mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
11 lines
327 B
Lua
11 lines
327 B
Lua
-- Copyright (C) 2018 David Capello
|
|
--
|
|
-- This file is released under the terms of the MIT license.
|
|
-- Read LICENSE.txt for more information.
|
|
|
|
assert(100 == math.abs(-100))
|
|
assert(100 == math.min(100, 200, 300))
|
|
assert(300 == math.max(100, 200, 300))
|
|
assert(50 == math.fmod(250, 100))
|
|
assert(3141 == math.floor(1000*math.pi))
|