Skip to content
Snippets Groups Projects
Commit 50c92534 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1998-07-02 10:47:21 by simonm]

Test for 'main' space leak (fixed in new RTS).
parent 35e3879f
No related merge requests found
module Main where
import IO
--!!! CAF space leaks
main = lots_of_xs 10000
lots_of_xs 0 = return ()
lots_of_xs n = putChar 'x' >> lots_of_xs (n-1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment