add hello_world demo

This commit is contained in:
liuweiwei 2024-11-06 08:51:54 +08:00
parent 10a3f17ab2
commit 4ef81eec86
2 changed files with 13 additions and 0 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# MSVC Windows builds of cjc generate these, which store debugging information
*.cjo
*.exe
*.bchir2
target/
cjpm.lock
.vscode/
.cache/

View File

@ -0,0 +1,5 @@
// main函数最先执行
main() {
// 打印Hello World!
println("Hello World!");
}