ref: a27c66fd16dc47c13c9169bc87a723901eb1a5af
parent: 9e933c756a0e0653d347afac3905e75dd8df1c28
author: Ori Bernstein <[email protected]>
date: Mon Aug 19 06:32:56 EDT 2013
Add missing 'option' file.
--- a/libstd/Makefile
+++ b/libstd/Makefile
@@ -8,6 +8,7 @@
extremum.myr \
fmt.myr \
intparse.myr \
+ option.myr \
optparse.myr \
rand.myr \
slappend.myr \
--- /dev/null
+++ b/libstd/option.myr
@@ -1,0 +1,6 @@
+pkg std =
+ type option(@a) = union
+ `Some @a
+ `None
+ ;;
+;;