Can someone describe this F# expression to me?
val augment: GameGrid -> points -> unit
What does the val
keyword mean?
Is it true that usually type -> type
indicates a function that returns the specified type? So does type -> type -> type
indicate a function that returns a function that returns the specified type?