mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-05-19 21:56:37 +08:00
14 lines
238 B
Dart
14 lines
238 B
Dart
/*
|
|
* SPDX-FileCopyrightText: 2022 Vishesh Handa <me@vhanda.in>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
library git_setup;
|
|
|
|
/// A Calculator.
|
|
class Calculator {
|
|
/// Returns [value] plus 1.
|
|
int addOne(int value) => value + 1;
|
|
}
|