-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
184 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
case ["I will arise", "and go now", "and go to Innisfree"] | ||
in String, String | ||
"and a small cabin build there, of clay and wattles made" | ||
in SmallCabin["clay", "wattles"] | ||
"Nine bean-rows will I have there, a hive for the honey-bee," | ||
in BeeLoudGlade[String, *, String] | ||
"And live alone in the bee-loud glade" | ||
end | ||
|
||
case ["And I shall have some peace there", "for peace", "comes dropping slow"] | ||
in String,; | ||
"Dropping from the veils of the morning to where the cricket sings;" | ||
in Midnight[*] | ||
"There midnight's all a glimmer, and noon a purple glow," | ||
in 1, *, 2 | ||
"And evening full of the linnet's wings." | ||
end | ||
|
||
case [] | ||
in [*] | ||
0 | ||
in [] | ||
1 | ||
else | ||
2 | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters