Metaprograming, function eval not works as expected

julia> const SAer = 1
1

julia> macro Ticker_str(x)
           return esc(Symbol(x, "er"))
       end
@Ticker_str (macro with 1 method)

julia> v = Ticker"SA"
1
2 Likes