Skip to content

Instantly share code, notes, and snippets.

@SoulFireMage
Created December 23, 2013 14:21
Show Gist options
  • Save SoulFireMage/8097835 to your computer and use it in GitHub Desktop.
Save SoulFireMage/8097835 to your computer and use it in GitHub Desktop.
Learning series - very basics
let squaresNcubes = Array2D.create 10 10 ([|1 .. 10|] |> Array.map (fun x -> x * x), [|1 .. 10|] |> Array.map (fun x -> x * x * x))
@SoulFireMage
Copy link
Author

These snippets are non cut n paste learning to code - as in Tourrettes powered swear fests of syntax buggery and token mangling until my brain, fingers and compiler conspired to allow me to finally hack out the correct incantation of quotation, parenthisation and other assorted mystical symbols in the right order to allow it all to function!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment