9 lines
No EOL
174 B
Text
9 lines
No EOL
174 B
Text
import sys
|
|
|
|
read(buffer []byte) -> int {
|
|
return sys.read(std.in, buffer, len(buffer))
|
|
}
|
|
|
|
readFrom(fd int, buffer []byte) -> int {
|
|
return sys.read(fd, buffer, len(buffer))
|
|
} |