https://github.com/peterhellberg/langtons-ant
Langton's ant written in Go using termbox-go
https://github.com/peterhellberg/langtons-ant
go termbox toy-project
Last synced: 30 days ago
JSON representation
Langton's ant written in Go using termbox-go
- Host: GitHub
- URL: https://github.com/peterhellberg/langtons-ant
- Owner: peterhellberg
- Created: 2015-09-14T21:03:03.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-15T07:37:51.000Z (almost 10 years ago)
- Last Synced: 2025-01-14T07:11:31.587Z (6 months ago)
- Topics: go, termbox, toy-project
- Language: Go
- Homepage: https://en.wikipedia.org/wiki/Langton's_ant
- Size: 125 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# langtons-ant
[](https://github.com/peterhellberg/langtons-ant#license-mit)
[Langton's ant](https://en.wikipedia.org/wiki/Langton's_ant) written in Go using [termbox-go](https://github.com/nsf/termbox-go).

**Attractor of Langton's ant (The Higway)**

## Description
Langton's ant is a two-dimensional Turing machine with a very simple set of rules but complex emergent behavior.
## Rules
- At a white square, turn 90° right, flip the color of the square, move forward one unit
- At a black square, turn 90° left, flip the color of the square, move forward one unit## Installation
go get -u github.com/peterhellberg/langtons-ant
## License (MIT)
Copyright (c) 2015 [Peter Hellberg](http://c7.se/)
> Permission is hereby granted, free of charge, to any person obtaining
> a copy of this software and associated documentation files (the
> "Software"), to deal in the Software without restriction, including
> without limitation the rights to use, copy, modify, merge, publish,
> distribute, sublicense, and/or sell copies of the Software, and to
> permit persons to whom the Software is furnished to do so, subject to
> the following conditions:> The above copyright notice and this permission notice shall be
> included in all copies or substantial portions of the Software.> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
> EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
> NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
> LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
> OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
> WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.