RosettaCodeData/Task/Include-a-file/Wren/include-a-file.wren
2023-07-01 13:44:08 -04:00

4 lines
243 B
Text

import "./fmt" for Fmt // imports the Fmt module and makes the 'Fmt' class available
import "./math" for Int // imports the Math module and makes the 'Int' class available
Fmt.print("The maximum safe integer in Wren is $,d.", Int.maxSafe)