mte/unikernel/duniverse/angstrom/lib_test/test_let_syntax_native.ml
2025-11-11 02:07:51 +01:00

11 lines
164 B
OCaml

open Angstrom
let (_ : int t) =
let* () = end_of_input in
return 1
let (_ : int t) =
let+ (_ : char) = any_char
and+ (_ : string) = string "foo"
in
2