Last active
August 29, 2015 14:15
-
-
Save Waateur/55da8fb29cb1f6bf933d to your computer and use it in GitHub Desktop.
Goodbye Word
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
| print( "Goodbye, World!") # ceci n'est pas une Hello World ! | |
| a = " je suis une string" # ceci est une string unicode | |
| b = 'je suis une string aussi' # ça aussi | |
| c = bytes('je suis une bytes' ) | |
| c = {"clef" : 'valeur'} # ceci est une dictionnaire | |
| d = ( |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment