JuliaLang/julia

printing of keywords as symbols

Open

#34,072 opened on Dec 10, 2019

View on GitHub
 (4 comments) (0 reactions) (0 assignees)Julia (5,773 forks)batch import
display and printinggood first issue

Repository metrics

Stars
 (48,709 stars)
PR merge metrics
 (Avg merge 20d 6h) (157 merged PRs in 30d)

Description

We have many special cases for printing atoms that aren't simple symbols. We may need to also add the list of symbols that trigger special parsing:

julia> :(a = $:while)
:(a = while)

julia> :(a = $:do)
:(a = do)

Contributor guide