presentations/highlight-js/test/markup/reasonml/modules.txt

19 lines
369 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
let decode = json =>
Json.Decode.{
query: json |> field("query", string),
cacheKey: json |> field("cacheKey", string),
desc: json |> field("desc", string),
lambda: json |> field("lambda", string),
};
Some.Bucket.Of.(
let value = stuff();
);
let value = Some.Bucket.Of.stuff();
module type RewiredModule = {
type t = {
name: string
};
};