This commit is contained in:
Михаил Капелько
2023-05-31 19:51:22 +03:00
parent 187af293e9
commit 96d86d5b96
7 changed files with 17 additions and 4 deletions

View File

@@ -0,0 +1,3 @@
function memorySide() {
return 50;
}

3
shared/gen Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
tsc memorySide.ts --outfile JavaScript/memorySide.js

3
shared/memorySide.ts Normal file
View File

@@ -0,0 +1,3 @@
function memorySide(): number {
return 50
}

View File

@@ -1,7 +1,3 @@
function memorySide() {
return 50
}
function memorySpace() {
return 20
}