- Software Engineer at isolutions
- Librarian & Software Engineer at Bibliothek im Regenbogenhaus
- Computer Science Student at Eastern University of Applied Sciences
let mona = {
Name = "Mona Celeste Panchaud"
Pronouns = [ She; Her ]
Code = [ ``F#``; ``C#``; TypeScript; CSS; LaTeX ]
Tools = [ Rider; React; Fable ]
OutsideOfCode = [ "πͺ‘π§΅"; "π"; "π§ββοΈ"; "ποΈ"; "π©βπ³"; "πββοΈ"; "π΄ββοΈ"; "β°οΈ" ]
}
If you're interested in the types that make the above F# code compile, see below.
F# Types
type Pronoun = She | Her | He | Him | They | Them
type Language = ``F#`` | ``C#`` | TypeScript | CSS | LaTeX
type Tool = Rider | React | Fable
type Person = {
Name: string
Pronouns: Pronoun list
Code: Language list
Tools: Tool list
OutsideOfCode: string list
}