chore: add mobile app

This commit is contained in:
2026-02-07 22:33:02 +01:00
parent db34640acc
commit e89384ad4e
29327 changed files with 3886944 additions and 12 deletions
+41
View File
@@ -0,0 +1,41 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true,
});
exports.add = add;
exports.add0 = add0;
exports.add1 = add1;
exports.get0 = get0;
exports.get1 = get1;
exports.inc = inc;
exports.neg = neg;
exports.sub = sub;
exports.sub1 = sub1;
function add(a, b) {
return a + b;
}
function sub(a, b) {
return a - b;
}
function get0(x) {
return x;
}
function get1(x) {
return x;
}
function add1(x) {
return x + 1;
}
function sub1(x) {
return x - 1;
}
function neg(x) {
return -x;
}
function add0(x) {
return x;
}
function inc(x) {
return x + 1;
}