crystal
Generate 3D cellular automata
File Explorer
- .keep
- loader.py
- main.go
- main.go
- colors.mtl
- 000001.obj
- 000002.obj
- 000003.obj
- 000004.obj
- 000005.obj
- 000006.obj
- 000007.obj
- 000008.obj
- 000009.obj
- 000010.obj
- 000011.obj
- 000012.obj
- objreader.go
- objwriter.go
- accretor.go
- turmite.go
- world.go
- .gitignore
- go.mod
- go.sum
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Link
Example
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
go build
View Details ▼
go build
Compile Go sources.
go build {{path/to/main.go}}
Compile a 'package main' file (output will be the filename without extension):
go build -o {{path/to/binary}} {{path/to/source.go}}
Compile, specifying the output filename:
go build -o {{path/to/binary}} {{path/to/package}}
Compile a package:
// repository documentation
Was this content helpful?
(0 ratings)
