Last active
September 17, 2018 21:59
-
-
Save hillal20/3f17049c6e521bf885a5b6f0e236aa21 to your computer and use it in GitHub Desktop.
NegligibleNotableProgramminglanguage created by hillal20 - https://repl.it/@hillal20/NegligibleNotableProgramminglanguage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
for letter in 'Python': # First Example | |
if letter == 'h': | |
continue | |
print ('Current Letter :', letter) | |
var = 10 # Second Example | |
while var > 0: | |
var = var -1 | |
if var == 5: | |
continue | |
print ('Current variable value :', var) | |
print ("Good bye!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment