Coding rules in a programming language that make it easier to write the source code. For example, in Perl, the double dot operator creates multiple values. Writing
('A' .. 'Z') declares a range of values from A to Z. In other languages, each value has to be declared individually such as
'A','B','C'. See
programming syntax and
syntactic salt.