One thing...I get this compile error when trying to run the code like so:
    
    
    let x = "1+1"
    echo nimify(x)
    
    /home/xioren/Documents/coding/nim/burner.nim(190, 12) Error: type mismatch: 
got <string>
    but expected one of:
    macro nimify(s: static string): untyped
      first type mismatch at position: 1
      required type for s: static[string]
      but expression 'x' is of type: string
    
    expression: nimify(x)
    
    
    Run

Reply via email to