8 lines
77 B
Plaintext
8 lines
77 B
Plaintext
|
main() {
|
||
|
x := byte(42)
|
||
|
assert f(x) == 42
|
||
|
}
|
||
|
|
||
|
f(x byte) -> byte {
|
||
|
return x
|
||
|
}
|