forked from luna/jorts
16 lines
184 B
Text
16 lines
184 B
Text
|
import io
|
||
|
import integer
|
||
|
|
||
|
fn my_puts(string str) {
|
||
|
io.puts(str)
|
||
|
}
|
||
|
|
||
|
fn my_puts(int my_int) {
|
||
|
io.puts(integer.to_str(my_int))
|
||
|
}
|
||
|
|
||
|
fn main () {
|
||
|
my_puts(2)
|
||
|
my_puts("aaa")
|
||
|
}
|