|
|
|
|
|
by yccs27
205 days ago
|
|
The article is a bit confusing, but I like the concept behind symbols: Basically a way to distinguish identifier names (chosen by the programmer) from user-facing strings. The distinction between is one I've mentally adopted in other languages like Python as well. For personal projects I like to use single quotes for 'symbols' and double quotes for "strings", e.g.: add_label(text="Hello World!", align='center')
Does anyone else do something similar? |
|