in reply to No 'out of memory' message on Windows?

I tried it on cygwin and received:

$ perl OOM.pl Segmentation fault (core dumped) $ cat OOM.pl #!/usr/bin/perl -w use strict; use warnings; my %hash; my $count; $hash{$count++} = 'xyz'x999 while (1);
It took rather longer than I expected to fail.

...roboticus