initial commit

This commit is contained in:
2025-10-09 14:37:45 +03:00
commit 7f98da51da
15 changed files with 309 additions and 0 deletions

11
source/Utils.mc Normal file
View File

@ -0,0 +1,11 @@
import Toybox.Lang;
typedef Numeric as Number or Float or Long or Double;
function min(left as Numeric, right as Numeric) as Numeric {
if (left < right) {
return left;
} else {
return right;
}
}