I want to input numbers into a program from the command line.
    
    
    $ ./myprogram
    Please iput number:
    <do program>
    

The input number are unsigned 64-bit (uint64)

I tried the following:
    
    
    let var = uint64(readling(stdin, input)
    

But I apparently have to convert a string to an uint.

Reply via email to