Next>> Scroll to Bottom
Stuff goes here
L1[07:04:42] ⇨ Joins: cropped (cropped!~ident@119.161.97.158)
L2[17:32:53] ⇦ Quits: Amanda (Amanda!~quassel@c-73-165-85-199.hsd1.pa.comcast.net) (Read error: Connection reset by peer)
L3[18:06:14] ⇨ Joins: Amanda (Amanda!~quassel@c-73-165-85-199.hsd1.pa.comcast.net)
L4[18:12:22] ⇦ Quits: Amanda (Amanda!~quassel@c-73-165-85-199.hsd1.pa.comcast.net) (Ping timeout: 189 seconds)
L5[18:12:41] ⇨ Joins: Amanda (Amanda!~quassel@c-73-165-85-199.hsd1.pa.comcast.net)
L6[19:49:22] <ThePiGuy24> %lua local x = 1 for i=0,10 do x = math.log(x) print(x) end
L7[19:49:23] <MichiBot> 0 | -inf | nan | nan | nan | nan | nan | nan | nan | nan | nan
L8[19:49:33] <ThePiGuy24> %lua local x = 0 for i=0,10 do x = math.log(x) print(x) end
L9[19:49:34] <MichiBot> -inf | nan | nan | nan | nan | nan | nan | nan | nan | nan | nan
L10[19:49:49] <ThePiGuy24> %lua local x = 1.5 for i=0,10 do x = math.log(x) print(x) end
L11[19:49:49] <MichiBot> 0.40546510810816 | -0.90272045571788 | nan | nan | nan | nan | nan | nan | nan | nan | nan
L12[19:50:04] <ThePiGuy24> %lua local x = math.hugr for i=0,10 do x = math.log(x) print(x) end
L13[19:50:04] <MichiBot> main:1: bad argument #1 to 'log' (number expected, got nil)
L14[19:50:14] <ThePiGuy24> %lua local x = math.huge for i=0,10 do x = math.log(x) print(x) end
L15[19:50:14] <MichiBot> inf | inf | inf | inf | inf | inf | inf | inf | inf | inf | inf
L16[19:50:24] <ThePiGuy24> %lua local x = math.huge/2 for i=0,10 do x = math.log(x) print(x) end
L17[19:50:24] <MichiBot> inf | inf | inf | inf | inf | inf | inf | inf | inf | inf | inf
L18[19:50:47] <ThePiGuy24> %lua local x = 2^32 for i=0,10 do x = math.log(x) print(x) end
L19[19:50:47] <MichiBot> 22.180709777918 | 3.0992229822181 | 1.1311514291755 | 0.12323607780509 | -2.0936534314248 | nan | nan | nan | nan | nan | nan
Next>> Scroll to Top