Update of /cvsroot/agd/server/doc/dfuns
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15007
Added Files:
capitalize lower_case random strlen
Log Message:
New dfuns.
--- NEW FILE: lower_case ---
string lower_case(string)
Returns the lower_case version of the string. Original will not be changed.
--- NEW FILE: random ---
int random(int)
Returns a random number in the range 0..int, lower inclusive.
Examples:
random(1) always returns 0.
random(10) returns a number from 0 to 9.
--- NEW FILE: strlen ---
int strlen(string)
Returns the length of the string.
--- NEW FILE: capitalize ---
string capitalize(string)
Returns the string with the first character in upper case. Does not change the original.
|