Skip to content

Instantly share code, notes, and snippets.

View agar3s's full-sized avatar

Gio agar3s

View GitHub Profile
@agar3s
agar3s / index.html
Created July 29, 2013 21:37
A CodePen by Giovanny.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Canvas Background</title>
</head>
<body>
<header>
<h1>Hello canvas background</h1>
</header>
fun naranjas(n:int) =
let fun funcion_auxiliar(numero, acumulador) =
if numero = 0 then
acumulador
else
funcion_auxiliar(numero - 1, acumulador * numero)
in
funcion_auxiliar(n, 1)
end;