初始提交
This commit is contained in:
31
golang-learning/10-projects/02-todo-list/README.md
Normal file
31
golang-learning/10-projects/02-todo-list/README.md
Normal file
@@ -0,0 +1,31 @@
|
||||
# 待办事项列表项目
|
||||
|
||||
一个命令行待办事项管理程序,支持添加、删除、标记完成等功能。
|
||||
|
||||
## 功能特性
|
||||
- 添加新的待办事项
|
||||
- 查看所有待办事项
|
||||
- 标记事项为完成
|
||||
- 删除待办事项
|
||||
- 数据持久化(保存到文件)
|
||||
|
||||
## 运行方法
|
||||
```bash
|
||||
cd 02-todo-list
|
||||
go run main.go
|
||||
```
|
||||
|
||||
## 使用示例
|
||||
```bash
|
||||
# 添加待办事项
|
||||
go run main.go add "学习 Go 语言"
|
||||
|
||||
# 查看所有事项
|
||||
go run main.go list
|
||||
|
||||
# 标记完成
|
||||
go run main.go complete 1
|
||||
|
||||
# 删除事项
|
||||
go run main.go delete 1
|
||||
```
|
Reference in New Issue
Block a user