Upload to chd

This commit is contained in:
2025-12-23 09:52:59 -06:00
parent 440f74b27a
commit 3724fe104b
2 changed files with 13 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
"name": "format-4690",
"displayName": "format-4690",
"description": "Formatter for 4690 BASIC",
"version": "0.0.2",
"version": "1.0.0",
"repository": {
"url": "https://git.kidj.dev/IvanovichRU/4690-BASIC-Language-Support.git"
},

12
static/4690functions.BAS Normal file
View File

@@ -0,0 +1,12 @@
!! Función `valor absoluto`, devuelve un `REAL` que
!! contiene el valor absoluto de la expresión numérica
!! `NUM%`.
FUNCTION ABS(NUM%)
REAL ABS
REAL NUM%
END FUNCTION
FUNCTION ASC(STR$)
INTEGER*2 ASC
STRING STR$
END FUNCTION