This file contains hidden or 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
| /// +--------------------------------------+ | |
| /// | | | |
| /// | Decider | | |
| /// | | | |
| /// | Jérémie Chassaing | | |
| /// | @thinkb4coding | | |
| /// +--------------------------------------+ | |
| // A decider is a structure define by 7 parameters: |
Thanks to Sergey Tihon for running F# Weekly and F# Advent.
Thanks to manofstick for trying out the code and coming with invaluable feedback. Cistern.ValueLinq is very impressive.
There were many interesting improvements in F#6 but one in particular caught my eye, the attribute InlineIfLambda.
This file contains hidden or 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
| type Food = | |
| | Chicken | |
| | Rice | |
| type Step<'next> = | |
| | GetFood of Food * 'next | |
| | Eat of Food * 'next | |
| | Sleep of hours:int * 'next | |
| module Step = |
This is a collection of the things I believe about software development. I have worked for years building backend and data processing systems, so read the below within that context.
Agree? Disagree? Feel free to let me know at @JanStette.
Keep it simple, stupid. You ain't gonna need it.