Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
tacheraSasi committed Nov 24, 2024
1 parent a66e132 commit b057856
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion evaluator/import.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func fileExists(file string) bool {
_, err := os.Stat(file)
return err == nil
}

func evaluateFile(file string, env *object.Environment) (*object.Environment, object.Object) {
source, err := os.ReadFile(file)
if err != nil {
Expand Down
4 changes: 2 additions & 2 deletions lang_test/main.vint
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import time
package main{
name = "Vint"

let s = name.split("")
s = name.split("")
for i in s{
print(i)

}

let age = "10"
age = "10"
if (age == "20"){
print(age)
}else if (age=="10"){
Expand Down
Binary file added vint_linux_amd64_v0.5.1.tar.gz
Binary file not shown.

0 comments on commit b057856

Please sign in to comment.