Skip to content

Instantly share code, notes, and snippets.

View joelmcdaniel's full-sized avatar

joelmcd joelmcdaniel

View GitHub Profile
@joelmcdaniel
joelmcdaniel / Top20PizzaToppings.fsx
Last active April 11, 2025 22:37
F# - Pizza Exercise
#I @".\packages\FSharp.Data.2.4.2\lib\net45\"
#r "FSharp.Data.dll"
open FSharp.Data
open System
type PizzasJson = JsonProvider<"http://files.olo.com/pizzas.json">
type Pizza = {
mutable toppings: string[]
}