reasonml / reason

Simple, fast & type safe code that leverages the JavaScript & OCaml ecosystems
http://reasonml.github.io
MIT License
10.08k stars 425 forks source link

Polyvariants following printing as variants #2706

Open davesnx opened 1 year ago

davesnx commented 1 year ago
type align = [ | `Start | `End | `Center];

type justify = [ | `Around | `Between | `Evenly | `Start | `Center | `End];
type align =
  | Start
  | End
  | Center;

type justify =
  | Around
  | Between
  | Evenly
  | Start
  | Center
  | End;