This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
CNI
/
HaskellCourse
Seguir
3
Destacar
0
Fork
0
Archivos
Incidencias
0
Pull Requests
0
Wiki
Explorar el Código
Create a simple function to compute a power
DricomDragon
hace 5 años
padre
e27b68d87c
commit
111e3c85f2
Se han
modificado 1 ficheros
con
3 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
3
0
mypower.hs
+ 3
- 0
mypower.hs
Ver fichero
@@
-0
,
0
+
1
,
3
@@
+e1 x n =
case
n
of
+
0
->
1
+ _ -> x * e1 x (n -
1
)