VSCODE Exstention fix

This commit is contained in:
allexanderbergmns
2026-08-25 16:25:31 +02:00
parent 7ed774089e
commit b125721977
218 changed files with 5034 additions and 2 deletions
@@ -0,0 +1 @@
.vscode/settings.json
+9
View File
@@ -0,0 +1,9 @@
fn helper(x) {
return x * 2
}
fn main() {
let y = helper(21)
println(y)
println(unknown_var)
}
+6
View File
@@ -0,0 +1,6 @@
import os
fn main() {
let a = os.exists("x")
println(a)
}