This commit is contained in:
2026-07-10 14:13:40 +02:00
parent b68c572824
commit 15f5bc3d55
7 changed files with 58 additions and 6 deletions
+8
View File
@@ -0,0 +1,8 @@
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.v]
indent_style = tab
+8
View File
@@ -0,0 +1,8 @@
* text=auto eol=lf
*.bat eol=crlf
*.v linguist-language=V
*.vv linguist-language=V
*.vsh linguist-language=V
v.mod linguist-language=V
.vdocignore linguist-language=ignore
+27
View File
@@ -0,0 +1,27 @@
# Binaries for programs and plugins
main
TypoML
*.exe
*.exe~
*.so
*.dylib
*.dll
# Ignore binary output folders
bin/
# Ignore common editor/system specific metadata
.DS_Store
.idea/
.vscode/
*.iml
# ENV
.env
# Web assets and local databases
*.db
*.js
# Ignore installed modules through `v install --local`:
modules/
+3 -3
View File
@@ -1,8 +1,8 @@
all:
gcc -o typoml src/*
v .
run:
./typoml
./TypoML
clean:
rm -f typoml
rm -f TypoML
+5
View File
@@ -0,0 +1,5 @@
module main
fn main() {
println('Hello World!')
}
-3
View File
@@ -1,3 +0,0 @@
int main() {
return 0;
}
+7
View File
@@ -0,0 +1,7 @@
Module {
name: 'TypoML'
description: ''
version: '0.0.0'
license: 'ISC'
dependencies: []
}