Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joseluisq/dart-factorial-example
A Dart factorial library example.
https://github.com/joseluisq/dart-factorial-example
dart factorial
Last synced: 13 days ago
JSON representation
A Dart factorial library example.
- Host: GitHub
- URL: https://github.com/joseluisq/dart-factorial-example
- Owner: joseluisq
- Created: 2019-03-19T23:42:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-03-20T14:04:14.000Z (over 5 years ago)
- Last Synced: 2024-05-23T02:32:27.960Z (6 months ago)
- Topics: dart, factorial
- Language: Dart
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dart sample
> A [Dart](https://www.dartlang.org/) factorial library example.
Created from templates made available by Stagehand under a BSD-style
[license](https://github.com/dart-lang/stagehand/blob/master/LICENSE).## Usage
### Tasks usage
```sh
# 1. install dependencies
make deps# 2.1. run example
make run
# 2.2. test example
make test
```### Code usage
A simple code usage example:
```dart
import 'package:dart_sample/lib.dart';main() {
var math = Math();
double n = math.factorial(24);
}
```