Example of an OCaml script, which can run on a Numworks calculator!
- Copy this script to your Numworks calculator, then…
- How to use it? Install and launch the latest “OMicroB-camlboot-XXX.nwa” app from https://perso.crans.org/besson/publis/Numworks-apps/?C=M;O=D release page.
- See https://github.com/Naereen/OMicroB/ for the current state of this project. It’s a WORK IN PROGRESS!
- License: MIT License, Lilian Besson (Naereen) (c) 2024-2025
(* Example of an OCaml script to be used by the OMicroB-camlboot app *) let rec fibo n = if n <= 1 then n else (fibo (n-1)) + (fibo (n-2)) ;; fibo 12 ;;