I
I H H
Hello,
perl's syntax is what it is (as I undertood correctly) because it was
supposed to be like human languages.
Meaning a word or a phrase has context bind meaning. If context changes, the
meaning changes too.
Should there be more human nature properties in perl?
Could these be useful? At least might make scripting even more faster.
Division operator in string context would be like 'split':
@cols=split(/$expression/,$line); <=> @cols=$line/$expression;
---
open(F,$file);
@lines=<F>;
close(F);
<=>
@lines<$file>\o /\n;
perl's syntax is what it is (as I undertood correctly) because it was
supposed to be like human languages.
Meaning a word or a phrase has context bind meaning. If context changes, the
meaning changes too.
Should there be more human nature properties in perl?
Could these be useful? At least might make scripting even more faster.
Division operator in string context would be like 'split':
@cols=split(/$expression/,$line); <=> @cols=$line/$expression;
---
open(F,$file);
@lines=<F>;
close(F);
<=>
@lines<$file>\o /\n;