Skip to content

Commit

Permalink
fix: update example
Browse files Browse the repository at this point in the history
  • Loading branch information
zshipko committed Oct 19, 2023
1 parent e8dc9e4 commit 821085a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion examples/kv.ml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ let make_kv_plugin () =
let open Val_type in
Function.create "kv_write" ~params:[ I64; I64 ] ~results:[] ~user_data:()
@@ fun plugin () ->
print_endline "AAA";
let key = Host_function.input_string ~index:0 plugin in
let value = Host_function.input_string ~index:1 plugin in
Printf.printf "Write value=%s to key=%s\n" value key;
Expand Down

0 comments on commit 821085a

Please sign in to comment.