A Pen by Caballero75 on CodePen.
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
XCOPY C:\Users\Diego\OneDrive\VS_Code\Confs\dart_syntaxe\dart.json C:\Users\Diego\.vscode\extensions\dart-code.dart-code-3.13.1\syntaxes /y |
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
############################################## | |
### instlar strapi | |
### > npm install -g strapi | |
### cria diretorio do projeto | |
### > md meuprojeto ou strapi (exemplo abaixo) | |
############################################## | |
C:\ | |
λ cd Users\Diego\Documents\projects\ |
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
mixin Agility{ | |
var speed = 10; | |
void sitDown(){ | |
print('Sittin down'); | |
} | |
} | |
class Mammal{ | |
void breath(){ | |
print('Breath in breat out'); |
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
void main() { | |
var questoes = [ | |
{ | |
'Pergunta': ['Qual cor?'], | |
'Respostas': ['Verde', 'Vermelho', 'Preto'] | |
}, | |
{ | |
'Pergunta': ['Qual animal?'], | |
'Respostas': ['Cavalo', 'Cobra'] |
NewerOlder