How can I understand the standard syntax Strong spaces?
var foo="nim"
#! strongSpaces
echo $foo #error
# is parsed as
echo($foo) #true
echo $(foo) #error
echo `$`foo #true
#! strongSpaces Is this syntax played a role in the code?The shebang line must occur at the top of the file.
Note that #! for filters is being deprecated in the devel branch in favor of #?.
Also, the strong spaces stuff is still at best experimental; I'm not sure how much of a future it has (ping Araq?).