aarroyoc / advent-of-code-2020

Solutions of Advent of Code 2020
The Unlicense
7 stars 0 forks source link

Redundant quoting of atoms #5

Open triska opened 3 years ago

triska commented 3 years ago

One very small cosmetic issue I noticed: There is a tendency to use redundant single quotes for atoms. None of the atoms ., #, * etc. need to be quoted.

For example, it is perfectly valid to write a term V = vertex(X,Y,.) or T = f(#).

Single quotes have to be used for atoms like 'one atom'.

aarroyoc commented 3 years ago

Yeah, it's true. Sometimes I wanted to be extra sure :), I'll try to fix them later