5.0
12 Sep 2014 20:42
uint8 ord(const string &in s) { //Returns the ASCII value of the first character of a string.
return s.isEmpty() ? 0 : s[0];
}
string chr(uint8 x) { //Returns a one-character string corresponding to an ASCII value.
string s('0');
s[0] = x;
return s;
}
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.