Try with [Source Code Filters](https://nim-lang.org/docs/filters.html)
    
    
    #? replace(sub="<<", by="=")
    
    var a << 5
    echo a
    
    
    Run

But that's an ugly hack. 😊

Everything that's a `<<` becomes `=`, so `echo "This is <<"` outputs `This is 
=` .

Reply via email to