public class LibraryConsumerTest { public static Main () : void { print_endline ("Dynamic library creation and consumption test."); mutable hashtable = DynamicLibraryTest (); hashtable.Set ("Ala ma", "kota"); def thing = hashtable.Get ("Ala ma"); print_endline ("Ala ma " + thing + "!"); def x = option.Some (10); def y = option.None (); () } } (* BEGIN-OUTPUT Dynamic library creation and consumption test. Ala ma kota! END-OUTPUT *)