Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
Dim As String test, test1, test2
|
||||
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 : End If
|
||||
If Len(test) > Len(test1) Then
|
||||
test1 = test
|
||||
test2 = test1 & Chr(10)
|
||||
Elseif Len(test) = Len(test1) Then
|
||||
test2 += test & Chr(10)
|
||||
End If
|
||||
Loop
|
||||
|
||||
Print(test2)
|
||||
Sleep
|
||||
Loading…
Add table
Add a link
Reference in a new issue