[ create a new paste ] login | about

notfancy

Name: Matías Giovannini
Email:
Site/Blog: http://alaska-kamtchatka.blogspot.com/
Location: Buenos Aires, Argentina
Default language: OCaml
Favorite languages: OCaml
About:

Saved pastes by notfancy:

OCaml, pasted on Jan 13:
1
2
3
4
5
let epsilon = 1e-9

let sin_taylor x =
  let rec accumulate s y k =
    if abs_float y < epsilon then s else
...
view (27 lines)