todo_extractor 1.0.1
todo_extractor: ^1.0.1 copied to clipboard
This package will allow you to pull your TODOs into a independent file in the root directory.
int multiply() {
return 6 * 7;
}
int substruct() {
return 6 - 7;
}
int divide() {
return 6 ~/ 7;
}
int add() {
// TODO: implements add() method
return 0;
}