Up |
Create a string from an array of ascii value.
fun [tab I] S
Return : S the string.
typeof tab = tab I;;
fun ftab (char, index)=
if (char == 'z) then
set tab.index = 'e
else
0;;
fun main ()=
_showconsole;
set tab = strtotab "Hzllo World";
forTab @ftab tab;
_fooS tabtostr tab; // Hello World
0;;