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
| module BReuse.Helpers | |
| open System | |
| let failNullOrEmpty (x:string) = | |
| if isNull x then failwith "Null not expected" | |
| elif String.IsNullOrEmpty x then failwith "Empty not expected" | |
| module String = |
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
| module IdlePlanetMiner | |
| // ============================================================================= | |
| // CORE DATA TYPES | |
| // ============================================================================= | |
| // Planet information from the wiki | |
| type Planet = { | |
| Name: string | |
| BasePrice: int |
OlderNewer