Read a character from the standard input (stdin).

Property definitions

core :: file $ Sys :: getc
# Read a character from the standard input (`stdin`).
fun getc: Char
do
	var c = sys.stdin.read_char
	if c == null then return '\1'
	return c
end
lib/core/file.nit:1709,1--1715,3