diff --git a/challenges/0-hello-world/dart/lokoinsanus/README.md b/challenges/0-hello-world/dart/lokoinsanus/README.md new file mode 100644 index 00000000..ac07ed48 --- /dev/null +++ b/challenges/0-hello-world/dart/lokoinsanus/README.md @@ -0,0 +1,22 @@ +# Submissão de Exercicio + +**Exercicio:** 0 - Hello World + +**Nickname:** lokoinsanus + +**Nível Técnico:** - Estudante + +**Empresa:** - Nenhuma + +**Twitter**: https://twitter.com/lokoinsanus + +**Dificuldade de Resolução:** - Baixa + +**Como rodar o desafio**: + +É necessário ter o ambiente ter instalada a Dart SDK. Podendo seguir as orientações em https://dart.dev/get-dart + +Para compilar o código use: +```bash +dart hello.dart +``` \ No newline at end of file diff --git a/challenges/0-hello-world/dart/lokoinsanus/hello.dart b/challenges/0-hello-world/dart/lokoinsanus/hello.dart new file mode 100644 index 00000000..42d5392c --- /dev/null +++ b/challenges/0-hello-world/dart/lokoinsanus/hello.dart @@ -0,0 +1,3 @@ +main() { + print("Hello, World!"); +}