Some more go
This commit is contained in:
7
.gitignore
vendored
7
.gitignore
vendored
@@ -2,15 +2,18 @@
|
||||
*.svg
|
||||
*.png
|
||||
*.jpg
|
||||
*.rnote
|
||||
|
||||
# Documents
|
||||
*.pdf
|
||||
|
||||
# Builds
|
||||
.venv
|
||||
build
|
||||
target
|
||||
node_modules
|
||||
build
|
||||
.venv
|
||||
|
||||
# Deprecated lua for now
|
||||
.luarocks
|
||||
luarocks
|
||||
lua
|
||||
|
||||
2
justfile
2
justfile
@@ -11,3 +11,5 @@ test_langs:
|
||||
julia ./src/main.jl
|
||||
nix flake info
|
||||
bun run ./index.ts
|
||||
go mod graph
|
||||
go run ./src/main.go
|
||||
|
||||
7
src/main.go
Normal file
7
src/main.go
Normal file
@@ -0,0 +1,7 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("Hello from go!")
|
||||
}
|
||||
Reference in New Issue
Block a user