Skip to content

Instantly share code, notes, and snippets.

View latkin's full-sized avatar

Lincoln Atkinson latkin

View GitHub Profile
@latkin
latkin / test.fsx
Created April 22, 2015 03:38
Try block perf overhead
#time ;;
let testNoTry () =
let mutable x = 0
for i in 1 .. 1000000000 do
x <- x + 1
x
let testTry () =
let mutable x = 0
@latkin
latkin / readme.md
Last active August 29, 2015 14:12
Blog: Non-transitive dice
@latkin
latkin / README.md
Last active August 29, 2015 14:12
Extended 'for' loops for F#

Backing code and examples for two different mini-frameworks adding extended imperative-style for loops in F#.

Discussed in blog post here.