-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: 🚚
cloudnativebasecamp_algo_01_dart
-> playground
- Loading branch information
1 parent
9014bf1
commit f7ea4cc
Showing
4 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
void main(List<String> arguments) { | ||
// Welcome to the Playground! | ||
// | ||
// This is a place where you can play with the algorithms in the repository. | ||
// Feel free to add your own code and run it. | ||
// | ||
// For example: | ||
// | ||
// final circleRadius = 2.5; | ||
// final circleArea = calculateCircleArea(circleRadius); | ||
// print('The area of a circle with radius $circleRadius is $circleArea'); | ||
} |
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
void main() { | ||
// Welcome to the Playground Test! | ||
// | ||
// Here you can write tests for the code in playground.dart file. | ||
// | ||
// For example: | ||
// | ||
// test('calculateCircleArea() returns correct value', () { | ||
// final circleRadius = 2.5; | ||
|
||
// final circleArea = calculateCircleArea(circleRadius); | ||
|
||
// expect(circleArea, 19.634954084936208); | ||
// }); | ||
} |