Skip to content

Commit

Permalink
Merge pull request SaptakBhoumik#86 from DHECK17/patch-1
Browse files Browse the repository at this point in the history
Update string.pe
  • Loading branch information
SaptakBhoumik authored Oct 14, 2021
2 parents fcea231 + 96b8bbf commit 20e8146
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Peregrine/tests/manual/string.pe
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
def main():

str a = NULL

if "a"==NULL:
print("Not ok")
if "a"!=NULL:
print("Ok\n")
str a=NULL
if "a">=NULL:
print("Not ok")
if "a"<=NULL:
print("Not Ok")
if a!=NULL:
print("Not Ok\n")
if a==NULL:
print("All ok")
print("All ok")

0 comments on commit 20e8146

Please sign in to comment.