How do you write your code? AFAIK, `readLine` is blocking.

In my machine, below code is working fine. Using Windows 10 with GCC v 7.1.0 
    
    
    import strutils, typetraits
    
    stdout.write "Input integer number: "
    let number = stdin.readline.parseBiggestUInt
    echo "You inputed ", number, " with type ", number.type.name
    

Reply via email to