Hacker News new | ask | show | jobs
by BurningFrog 479 days ago
In the Python world I was in, trailing underscores is used to work around the ban on reserved words. The language grabs some of the best names for itself!

So a variable that really ought to be named `class` you name `class_`.

1 comments

In java usually clazz
That's what I used to do before discovering this.