-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work around for change in
js_of_ocaml
5.9.0
`js_of_ocaml` 5.9.0 started using `node:` prefixed modules, which do not exist on old node versions.
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
open Picos | ||
|
||
let () = | ||
Printf.printf "Hello, from js_of_ocaml with Picos!\n%!"; | ||
let trigger = Trigger.create () in | ||
Trigger.signal trigger | ||
Trigger.signal trigger; | ||
match Trigger.await trigger with None -> () | Some _ -> assert false |