https://github.com/glguy/intcode
Intocode interpreter for Advent of Code 2019
https://github.com/glguy/intcode
Last synced: 4 months ago
JSON representation
Intocode interpreter for Advent of Code 2019
- Host: GitHub
- URL: https://github.com/glguy/intcode
- Owner: glguy
- License: isc
- Created: 2019-12-21T21:39:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-16T23:06:06.000Z (7 months ago)
- Last Synced: 2025-02-27T15:18:26.808Z (4 months ago)
- Language: Haskell
- Size: 59.6 KB
- Stars: 10
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Intcode Interpreter
[](https://hackage.haskell.org/package/intcode) [](http://travis-ci.org/glguy/intcode)
Implementation of the Intcode virtual machine as defined by
[Advent of Code 2019](https://adventofcode.com/2019).This implementation provides an efficient, pure implementation
of the interpreter and exposes multiple levels of abstraction
to make it easy to use in a variety of situations.This implementation is derived from my puzzle solutions
[glguy/advent2019](https://github.com/glguy/advent2019).
Example uses include
[Day13.hs](https://github.com/glguy/advent2019/blob/master/execs/Day13.hs)
and
[Day15.hs](https://github.com/glguy/advent2019/blob/master/execs/Day15.hs).