crystal
crystal copied to clipboard
Heredoc identifier can accept any starting identifier value
trafficstars
Typically, all identifiers must start with an ASCII letter or underscore and proceeding alphanumeric character, however, numeric and underscore-only identifiers are accepted for heredocs:
p <<-123
4567
654
123
# => "4567\n 654"
p <<-_
foo
bar
_
# => "foo\nbar"