-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa9d03b
commit 63b19b7
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 cubo.dart 4 | ||
``` |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import 'dart:math'; | ||
|
||
main(List<String> args) { | ||
print(pow(num.parse(args[0]), 3)); | ||
} |