Lua mininteger

array3109927609's avatar
Published Oct 23, 2023
Contribute to Docs

math.mininteger is a constant that is part of Lua’s math library. The math.mininteger constant is a constant representing the smallest value that can be possibly held by an integer.

Note: The math.mininteger constant has the opposing functionality to the math.maxinteger constant which returns the highest value that can be held by an integer.

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Learn the basics of Lua, a general-purpose programming language used for building games, web apps, and developer tools.
    • Beginner Friendly.
      4 hours

Syntax

Since mininteger is a constant from Lua’s library math, it is called as math.mininteger.

math.mininteger

Example

To find the smallest possible integer value in Lua:

print(math.mininteger)

This results in something like the following output:

-9223372036854775808

It can be used when assigning a variable to a very small value:

local max = math.mininteger
if someValue > max then
max = someValue

All contributors

Contribute to Docs

Learn Lua on Codecademy

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Learn the basics of Lua, a general-purpose programming language used for building games, web apps, and developer tools.
    • Beginner Friendly.
      4 hours