You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks complicated, but it's pretty simple: A clog has two basic components wrapped inside #{ }:
Parameters - One of the following (matches regex '.*'|\$\d+|@\d+|true|false)
a. A literal string, enclosed in single quotes 'hello world'
b. A reference to one of the parameters passed to the string formatter. This is a 1-indexed number preceded by a dollarsign - $1
c. A reference to the result of one of the previous clogs. This is a 1-indexed number preceded by an 'at' symbol - @1
d. A literal integer - 12
e. A literal double - -0.3
f. A literal boolean - true or false`