Skip to content

Commit

Permalink
number with Dart
Browse files Browse the repository at this point in the history
  • Loading branch information
Edgarzerocool committed Oct 3, 2022
1 parent a48b99d commit 9557f74
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
| Rahul Jangle | <a href="https://github.com/Rronny01/">Ronny</a> | <a href="mailto:[email protected]">E-Mail</a> |
| Anurag Vats | <a href="https://github.com/AnuragVats007">Anurag Vats</a> | <a href="mailto:[email protected]">E-Mail</a> |
| Daksh Kesarwani | <a href="https://github.com/InnocentDaksh63">Daksh kesaarwani</a> | <a href="[email protected]">E-Mail</a> |
| Edgar Gonzalez | <a href="https://github.com/Edgarzerocool">Edgar Gonzalez</a> | <a href="[email protected]">E-Mail</a> |



Expand Down
7 changes: 7 additions & 0 deletions Dart/numbers.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
//Print 1 to 100 without using numbers
void main() {
int limite = int.parse("100");
for (int i = 1; i <= limite; i++) {
print(i);
}
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Contribute to start your journey with hacktoberfest and python. Happy Hacking
- 💻 Python
- 💻 Java
- 💻 Javascript
- 💻 Dart

# ❄Prgrams
- ⚡Print 1 to 100 without using numbers
Expand Down

0 comments on commit 9557f74

Please sign in to comment.