sudo apt-get install git-all
sudo apt install r-base-core
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
<script> | |
// PASSANDO PARA A FUNÇÃO UMA INFORMAÇÃO PRIMITIVA (COMO NÚMERO, STRING OU BOOLEAN), UMA CÓPIA DO VALOR É PASSADA. ASSIM, QUANDO A FUNÇÃO FAZ UMA ALTERAÇÃO, APENAS A CÓPIA É ALTERADA, MANTENDO O VALOR ORIGINAL INTACTO. | |
let numberAge=1; | |
function functionBirthday(parAge){ | |
parAge=parAge+1; | |
} | |
functionBirthday(numberAge); | |
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
{ | |
// TAB BEHAVIOR: | |
"editor.insertSpaces": false, // VSCODE WON'T INSERT SPACES WHEN PRESSING 'TAB'. | |
"editor.tabSize": 4, // THE NUMBER OF SPACES A TAB IS EQUAL TO. | |
"editor.detectIndentation": false, // DISABLE 'editor.tabSize' AND 'editor.insertSpaces' AUTOMATIC DETECTION BASED ON THE FILE CONTENTS. | |
///// | |
// EXPLORER SIDEBAR: | |
"explorer.sortOrder": "filesFirst", // FILES AND FOLDERS ARE SORTED BY THEIR NAMES. FILES ARE DISPLAYED BEFORE FOLDERS. | |
"explorer.confirmDelete": false, // THE EXPLORER WON'T ASK FOR CONFIRMATION WHEN DELETING A FILE VIA THE TRASH. | |
"workbench.tree.indent": 18, // CONTROLS TREE INDENTATION IN PIXELS. |
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
{ | |
"tabWidth": 4, | |
"semi": true, | |
"useTabs": true, | |
"singleQuote": true, | |
"trailingComma": "all", | |
"printWidth": 100, | |
"plugins": ["prettier-plugin-svelte"], | |
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] | |
} |
OlderNewer