\definetyping[haskell][option=HASKELL,before=\startboxed,after=\stopboxed]
% Define \hs
\definetype[hs][option=HASKELL,style=mono]
+
+% Type the given buffer with the lambda typing style.
+% e.g., \typebufferlam{buffname}
+\define[1]\typebufferlam{
+ % We can't use \startlambda here defined by definetyping[lambda] above when
+ % typing buffers, so instead we'll redfine the options here.
+ \setuptyping[option=LAM,style=sans,before=,after=]
+ \startboxed
+ \typebuffer[#1]
+ \stopboxed
+ % Reset the typing options
+ \setuptyping[option=none,style=\tttf]
+}