Files
highground-fork/libs/conversions.sols

16 lines
230 B
Plaintext

def stringToInt(string in) int {
result = 0
ground {
stoi $in &result
}
return result
}
def intToString(int in) string {
result = ""
ground {
tostring $in &result
}
return result
}