http://bugzilla.novell.com/show_bug.cgi?id=419828

User [email protected] added comment
http://bugzilla.novell.com/show_bug.cgi?id=419828#c6





--- Comment #6 from Miguel de Icaza <[email protected]>  2009-05-10 12:37:05 
MDT ---
This version (wooohoo!   my first F# mod!) prints the lines, and verifies that
the compiled version works, the interpreted one, does not:

#light

let rec map f l =
    match l with
    | [] -> []
    | h::t -> f h :: map f t

map (fun x -> System.Console.WriteLine ((int) x), x * 2) [1 .. 10]

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to