Dear perlmonks, I have a question to ask that baffles me. While coding i just decided to try out a way to flood my operating system with Perl's request i all i got was a message saying (Out of Memory!) without getting any sort of warnings from Perl even though strict,warnings ,diagnostic where enabled.
Please can any one tell me why i got this message. see the code i used for the request.
my $flood_network = "********************\n" x 1_000_000_000_000;
print("$flood_network");