Skip to content

Instantly share code, notes, and snippets.

View t-katsushima's full-sized avatar

T. Katsushima t-katsushima

View GitHub Profile
let rec power n x =
if n = 0 then .<1>. else .< .~x * .~(power (n-1) x) >.;;
let rec power n x =
if n = 0 then .<1>. else .< x * .~(power (n-1) x) >.;;
let power5 = power 5;;
power5 .<3>.;;
Runcode.run;;