On Mon Mar 02 01:04:52 2009, ml...@physik.uni-wuerzburg.de wrote: > It seems that even the simplest programs leak memory: > > $ perl6 -e 'while 1 { }' > > Watching this in top (1) shows that it leaks about 1m per second on my > machine (linux amd64). > It's interesting to note that while this leaks, this one:
perl6 -e '42 while 1' Does not. Jonathan