[Feat] 更新Readme项目层级,然后现在忽略本地测试文件 test.fig

This commit is contained in:
2025-12-24 18:20:48 +08:00
parent fc35368d85
commit 44165992c3
2 changed files with 1 additions and 16 deletions

2
.gitignore vendored
View File

@@ -8,6 +8,6 @@ build/
.vscode
.VSCodeCounter
test.fig
/test.fig
docs/node_modules

View File

@@ -1,15 +0,0 @@
struct Person
{
name: String;
func getName() -> String
{
return name;
}
}
var person := Person{"PuqiAR"};
const print := __fstdout_println;
print(person.getName());