Press CTRL+C or CMD+C to copy the selected text and close this dialog.
Tweet
0 people like it. Like the snippet!
1: 2: 3: 4: 5: 6: 7: 8: 9:
module Test1 = let x = 5 let get_clo() = fun () -> x module Test2 = let x = 10 let f = Test1.get_clo() Test2.f() /// 5