include start
input "testing 1 2 3\n"
call2 OK "testing" mvscanw 3 5 "%s"
input "testing 1 2 3\n"
call2 OK "test" mvscanw 3 5 "%4s"
# 50 will translate into number 2 in ascii
input "50 12\n"
call2 OK "2" mvscanw 3 5 "%d"
input "aa bb 50 12\n"
# expect ERR becauss input has alpha and scanw wants integer
call2 ERR "2" mvscanw 3 5 "%d"
