function Balls(a: boolean)
if not a then
warn("a is not true!!!")
return
end
end
function Circles(a: boolean)
if not a then
return warn("a is not true!!!")
end
end
-- Is there a difference between these???
Functionally, there isn’t a difference between the 2.
The return in Circles returns the output of the warn, which is nil, and the return in Balls returns nothing, AKA nil.