init
This commit is contained in:
10
testcases/basic-testcases/test7.in
Normal file
10
testcases/basic-testcases/test7.in
Normal file
@ -0,0 +1,10 @@
|
||||
#String Operation Test
|
||||
Hello = "Hello, "
|
||||
World = "World!"
|
||||
print(Hello + World)
|
||||
Hello *= 3
|
||||
print(Hello + "is there anybody in there?")
|
||||
|
||||
cmp = Hello <= World
|
||||
print(cmp)
|
||||
print(not cmp)
|
Reference in New Issue
Block a user