Data update

This commit is contained in:
Ingy döt Net 2025-02-27 18:35:13 -05:00
parent 8e4e15fa56
commit 72eb4943cb
1853 changed files with 35514 additions and 9441 deletions

View file

@ -0,0 +1,9 @@
10 DIM S$(12),INV$(12)
20 S$="Rosetta Code"
30 FOR I=1 TO 12
40 INV$(I)=CHR$(ASC(S$(I))+128)
50 NEXT I
60 GRAPHICS 0
70 FOR I=1 TO 10
80 PRINT S$,INV$
90 NEXT I

View file

@ -1,2 +1,4 @@
System.print("\e[7mInverse")
System.print("\e[0mNormal")
import "./ansi" for Style
System.print(Style.inverse("Inverse"))
System.print("Normal")