var b = map(r, proc(x: string): string = if x.isNilOrEmpty(): "stuff" else: 
x)
    

no. (Error: complex statement requires indentation) 
    
    
    var b = map(r, proc(x: string): string =
                     if x.isNilOrEmpty(): "stuff" else: x)
    

yes.

that, I refuse it.

Reply via email to