Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
9
Task/Empty-string/QB64/empty-string.qb64
Normal file
9
Task/Empty-string/QB64/empty-string.qb64
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
Dim s1 As String 'initialized empty
|
||||
If Len(s1) = 0 Then Print "Empty"
|
||||
|
||||
s2$ = ""
|
||||
If s2$ = "" Then Print "Empty"
|
||||
|
||||
s3$ = "cat"
|
||||
If Len(s3$) <> 0 Then Print "Not empty"
|
||||
If s3$ <> "" Then Print "Still not empty"
|
||||
Loading…
Add table
Add a link
Reference in a new issue