Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
DATA "a", "bb", "ccc", "ddd", "ee", "f", "ggg", "~" ! la tilde es solo para mantener el código compacto
|
||||
|
||||
DO
|
||||
READ test$
|
||||
IF test$ = "~" then EXIT DO
|
||||
IF len(test$) > len(test1$) then
|
||||
LET test1$ = test$
|
||||
LET test2$ = test1$ & chr$(10)
|
||||
ELSEIF len(test$) = len(test1$) then
|
||||
LET test2$ = test2$ & test$ & chr$(10)
|
||||
END IF
|
||||
LOOP
|
||||
|
||||
PRINT(test2$)
|
||||
END
|
||||
Loading…
Add table
Add a link
Reference in a new issue