shithub: mc

ref: 51567134bf91de89705a64670abae17514ecc55a
dir: /lib/std/option.myr/

View raw version
pkg std =
	type option(@a) = union
		`None
		`Some @a
	;;
;;