Please enable JavaScript in your browser!
Página inicial
Explorar
Ajuda
Entrar
ZelphirKaltstahl
/
advent-of-code-2021
Observar
1
Favorito
0
Fork
0
Arquivos
Issues
0
Pull Requests
0
Wiki
Tree:
8804f4ce34
Branches
Tags
master
advent-of-co...
/
day-05
/
lib
/
math_extra.sml
math_extra.sml
162 B
Histórico
Raw
1
2
3
4
5
6
7
8
9
10
structure MathExtra = struct
fun sign num =
if num > 0
then 1
else
if num < 0
then ~1
else 0;
end