Symbols in Julia is a special form of strings that are faster for some 
operations (like comparisons) and much slower for others. Julia uses symbols 
internally to represent variable names.

You create a symbol from a string with the symbol("A") function, or the :A 
syntax.

Reply via email to