+ 6
Hyphens (-) are also called "dashes" and usually appear in older programming languages, though they are also used in CSS:
background-color: blue;
Perhaps because they can be confused with the minus sign (a = some-thing) , newer languages will use underscores (_) instead:
a = some_thing - some_thing_else; // something less (minus) something else



