Archived tweet #11083 from the @leastfixedpoint Twitter Archive@abecedarius You put strings for literals. Identifiers are dereferenced. (If they are bound to symbols, the symbols are stringified.)
def x: "hello"
echo "hello" // prints hello
echo x // prints hello
echo $(echo "hello") // prints hello