mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-05-24 16:56:28 +08:00

This will contain all the code for setting up a git repo. I'm moving the code to another package as it can then be more easily used across other projects.
8 lines
127 B
Dart
8 lines
127 B
Dart
library git_setup;
|
|
|
|
/// A Calculator.
|
|
class Calculator {
|
|
/// Returns [value] plus 1.
|
|
int addOne(int value) => value + 1;
|
|
}
|