loop {
	10000.times.map { Fiber.new { } } 
	GC.start # not necessary, just to be sure
	puts File.open('/proc/self/status').grep(/VmRSS:/).first
}
