10 lines
108 B
Plaintext
10 lines
108 B
Plaintext
import "../math"
|
|
|
|
read :: func(value i8) int {
|
|
return math.value
|
|
}
|
|
|
|
main :: func() i32 {
|
|
return read(1)
|
|
}
|