Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Go workspace file
go.work

# Dependency directories
vendor/

# Go module cache
root/

# Build artifacts
examples/01_datatypes
examples/02_variables
examples/03_operators
examples/04_controlflow
examples/05_functions
examples/06_arrays_slices
examples/07_maps
examples/08_structs
examples/09_interfaces
examples/10_concurrency
examples/11_errorhandling
Loading