Skip to content

Instantly share code, notes, and snippets.

@jgwill
Last active May 5, 2020 19:40
Show Gist options
  • Select an option

  • Save jgwill/7fdecaa6b5256a2151f584b911affc95 to your computer and use it in GitHub Desktop.

Select an option

Save jgwill/7fdecaa6b5256a2151f584b911affc95 to your computer and use it in GitHub Desktop.
//Lire un fichier et imprimer son contenu
var fs = require('fs');
fs.readFile('README.md', 'utf8', function(err, contents) {
console.log(contents);
//contents object has the data
});

Title

Subtitle

  • Un boulet
  • ...
  • Au fur et a mesure je vois ce que je tappe

­>Une citation qui aura un retrait au debut.

Exemple de code bien formatte

//Lire un fichier et imprimer son contenu
var fs = require('fs');
 
fs.readFile('README.md', 'utf8', function(err, contents) {
    console.log(contents);

    //contents object has the data
});
#A comment
myvar='its value'

def myfunc:
    print(myvar)

myfunc()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment