Help for this page
open(FOO, '>', ...) or die $!; print(FOO "string\n");
open(*FOO, '>', ...) or die $!; print({ *FOO } "string\n");