This commit is contained in:
toly
2023-12-16 13:35:49 +08:00
parent 01fdf966c5
commit b04b138b53
27 changed files with 482 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
library anima;
/// A Calculator.
class Calculator {
/// Returns [value] plus 1.
int addOne(int value) => value + 1;
}