(no title)
znpy | 8 hours ago
Reminds me of Perl's $^M: https://perldoc.perl.org/variables/$%5EM
In Perl you can "hand-manage" that. This line would allocate a 64K buffer for use in an emergency:
$^M = 'a' x (1 << 16);znpy | 8 hours ago
Reminds me of Perl's $^M: https://perldoc.perl.org/variables/$%5EM
In Perl you can "hand-manage" that. This line would allocate a 64K buffer for use in an emergency:
$^M = 'a' x (1 << 16);
No comments yet.