%%private is used to make let bindings private.
%%private
module Calc = { %%private(let mult = (x, y) => x * y) let double = x => mult(x, 2) let triple = x => mult(x, 3) }
Private Let Bindings
Extension Point Attributes