Please enable JavaScript in your browser!
ホーム
エクスプローラ
ヘルプ
サインイン
ZelphirKaltstahl
/
advent-of-code-2021
Watch
1
Star
0
Fork
0
ファイル
課題
0
プルリクエスト
0
Wiki
ツリー:
8804f4ce34
ブランチ
タグ
master
advent-of-co...
/
day-05
/
lib
/
math_extra.sml
math_extra.sml
162 B
履歴
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