Files
highground-fork/libs/io.sols

24 lines
306 B
Plaintext
Raw Normal View History

def input(string msg) string {
retval = ""
ground {
print $msg
input &retval
}
return retval
}
def print(string msg) string {
ground {
print $msg
}
return msg
}
def println(string msg) string {
ground {
println $msg
}
return msg
}