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
open System | |
type Interval = | |
| PerfectUnison | |
| MinorSecond | |
| MajorSecond | |
| MinorThird | AugmentedSecond // Enharmonically the same in 12TET | |
| MajorThird | |
| PerfectFourth | |
| DiminishedFifth | AugmentedFourth // Enharmonically the same in 12TET |
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
#r "nuget: Thoth.Json.Net" | |
open Thoth.Json.Net | |
type User = | |
{ | |
Name : string | |
Age : int | |
} |