https://github.com/kevinhellos/help-me-dart
Shorthand utilities & helper functions for Dart
https://github.com/kevinhellos/help-me-dart
dart-library
Last synced: 12 months ago
JSON representation
Shorthand utilities & helper functions for Dart
- Host: GitHub
- URL: https://github.com/kevinhellos/help-me-dart
- Owner: kevinhellos
- License: mit
- Created: 2024-01-17T15:06:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-17T15:11:06.000Z (over 2 years ago)
- Last Synced: 2025-03-15T05:42:02.940Z (over 1 year ago)
- Topics: dart-library
- Language: Dart
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Help Me Dart
Shorthand utilities & helper functions for Dart.
## Demo
To run locally, ensure you have Dart SDK installed on your local machine.
Download Dart SDK from: https://dart.dev/get-dart
```dart
// main.dart
import "./help.dart"; // import the helper library
void main(){
// Using input.getString(); // to get user's console input
String? name = input.getString("Enter name> ");
print("Hello $name !");
}
```