Some more go
This commit is contained in:
7
.gitignore
vendored
7
.gitignore
vendored
@@ -2,15 +2,18 @@
|
|||||||
*.svg
|
*.svg
|
||||||
*.png
|
*.png
|
||||||
*.jpg
|
*.jpg
|
||||||
|
*.rnote
|
||||||
|
|
||||||
# Documents
|
# Documents
|
||||||
*.pdf
|
*.pdf
|
||||||
|
|
||||||
# Builds
|
# Builds
|
||||||
|
.venv
|
||||||
|
build
|
||||||
target
|
target
|
||||||
node_modules
|
node_modules
|
||||||
build
|
|
||||||
.venv
|
# Deprecated lua for now
|
||||||
.luarocks
|
.luarocks
|
||||||
luarocks
|
luarocks
|
||||||
lua
|
lua
|
||||||
|
|||||||
2
justfile
2
justfile
@@ -11,3 +11,5 @@ test_langs:
|
|||||||
julia ./src/main.jl
|
julia ./src/main.jl
|
||||||
nix flake info
|
nix flake info
|
||||||
bun run ./index.ts
|
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