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