Skip to content

Instantly share code, notes, and snippets.

@hillal20
Last active September 17, 2018 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hillal20/3f17049c6e521bf885a5b6f0e236aa21 to your computer and use it in GitHub Desktop.
Save hillal20/3f17049c6e521bf885a5b6f0e236aa21 to your computer and use it in GitHub Desktop.
NegligibleNotableProgramminglanguage created by hillal20 - https://repl.it/@hillal20/NegligibleNotableProgramminglanguage
#!/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