Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Temperature

From Stationeers Wiki
Revision as of 22:55, 27 August 2025 by DLx (talk | contribs)

local p = {} function p.main(frame)

 local k = frame.args[1] or 0
 local c = k - 273.15
 return string.format("%g K (%.2f °C)", k, c)

end return p