1.0
08 May 2013 07:44
uint8 ord(string &in str){ //Returns the ASCII value of the first character of a string.
if(str.isEmpty()) {return 0;}
return str[0];
}
string chr(uint8 value){ //Returns a one-character string corresponding to an ASCII value.
string str="\0";
str[0]=value;
return str;
}
Jazz2Online © 1999-INFINITY (Site Credits). We have a Privacy Policy. Jazz Jackrabbit, Jazz Jackrabbit 2, Jazz Jackrabbit Advance and all related trademarks and media are ™ and © Epic Games. Lori Jackrabbit is © Dean Dodrill. J2O development powered by Loops of Fury and Chemical Beats.
Eat your lima beans, Johnny.