The current way of polyfill C stubs in js syntax is as below ```js require('bs-platform/lib/js/caml_external_polyfill.js').register('caml_fancy_add',function(x,y){ return + ((""+x ) + (""+y)) }) ``` we may allow user to polyfill it in OCaml as well, suggested syntax is ```ocaml [%register "caml_fancy_add", fun x y -> x + y ] ```