func ReverseString(String){ set Final = ""; for(i=?String-1;0;-1){ Final+=String[i]; } send Final; } log(ReverseString("Hello"));