Skip to content
This repository was archived by the owner on Apr 10, 2022. It is now read-only.

Commit 65fe80f

Browse files
committed
Init hisub
1 parent 0aa7ab3 commit 65fe80f

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

.idea/rGraphicsSettings.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module hisub
2+
3+
go 1.15

main.go

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package main
2+
3+
import "fmt"
4+
5+
/*
6+
解析器工作原理:
7+
1. 读入文件
8+
2. 移除无关行
9+
3. 为每一个 tag 创建一个对应的解析函数(类实现?)
10+
4. 解析所有内容并整理输出,为生成 .json 配置提供内容
11+
5. 生成 .json
12+
6. 基于配置和输入文件生成 plot.R
13+
*/
14+
15+
func main() {
16+
fmt.Println("Hello world!")
17+
}

0 commit comments

Comments
 (0)