I wager you're using a template, those gensym the identifiers created inside 
them, so the way to stop that is using `{.inject.}` as the following. 
    
    
    template test =
      let (a, _{.inject.}) = (100, 200)
    test()
    
    
    Run

Reply via email to