8 lines
77 B
Plaintext
Raw Normal View History

2025-02-27 00:18:34 +01:00
main() {
x := byte(42)
assert f(x) == 42
}
f(x byte) -> byte {
return x
}