Skip to content

Instantly share code, notes, and snippets.

View grapefroot's full-sized avatar
😰
Working from home

Dmitry Salnikov grapefroot

😰
Working from home
View GitHub Profile
@grapefroot
grapefroot / 2-3 sem
Created March 7, 2015 15:03
f# practical
//let operationMaker operation a b =
// operation a b
//
//
//let rec loop i acc1 acc2 =
// match i with
// |0 |1 -> (acc1, acc2)
// |_ -> loop (i-1) (acc2) (acc1 + acc2)
//
//