Skip to content

Instantly share code, notes, and snippets.

@koorchik
Created October 25, 2011 17:44
Show Gist options
  • Save koorchik/1313623 to your computer and use it in GitHub Desktop.
Save koorchik/1313623 to your computer and use it in GitHub Desktop.
# строка, которая в числовом контексте соответствуют
# нулю, а в логическом - истине
"0 but true"
perl -wE 'say "0 but true"+5'
#Получим 5 без никаких предупреждений
# Но стоит изменить хоть один символ в заветной строке
perl -wE 'say "0 but true!"+5'
'Argument "0 but true!" isn't numeric in addition (+) at -e line 1.
# И мы сразу получим предупреждение
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment