Open
Description
There is a bug in print()
where the following PS:
greet(thing): Hello %($thing)!
greeting:
$greet: World
prints as:
greet:
greet(thing): Hello %($thing)!
greeting: Hello World!
It puts the name of the function as a key in the hash, but then repeats it again, whereas it should just put the body.