Welcome to the forum :)

Yes, you can easily convert an int to a string by using `$` \- in Nim it's a 
convention to have a `$` operator for a type when you want to define a proc to 
convert it to a string, so:
    
    
    let myint = 5
    let myintstr = $myint
    echo myintstr
    
    
    Run

Reply via email to