Syntax
readpw()
Description
The readpw() function reads input from the keyboard and returns the result. The data typed is not echoed to the screen
Example
print("Passwd: ")
pw=readpw()
println(pw)
Passwd:doobydoobydo
doobydoobydo
	readpw()
The readpw() function reads input from the keyboard and returns the result. The data typed is not echoed to the screen
print("Passwd: ")
pw=readpw()
println(pw)
Passwd:doobydoobydo
doobydoobydo