B2S
not ratedUses the blizzard.j naming convention of only using the first letter of the type, i.e. I2S for Integer2String. Anyway, converts a boolean value to a string. Mainly useful as a debugging tool.
function B2S takes boolean whichBool returns string
if(whichBool) then
return "true"
endif
return "false"
endfunctionNo comments.