pythonizer
pythonizer copied to clipboard
Scalar context is not properly handled
Scalar context is not properly handled. Examples:
$x = @z;
$x = localtime();
$y = 3 + @z;
$y = @z - 1;
$bl = @z > 3;
$bl = 3 <= @z;
print "Z has " . @z . " elements";
print "At the tone, the time will be " . localtime();
say scalar localtime();
Fixed in https://github.com/snoopyjc/pythonizer