Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/glguy/intcode
Intocode interpreter for Advent of Code 2019
https://github.com/glguy/intcode
Last synced: 3 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-06T00:13:00.000Z (5 months ago)
- Last Synced: 2024-10-13T10:44:31.726Z (3 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
[![Hackage](https://img.shields.io/hackage/v/intcode.svg)](https://hackage.haskell.org/package/intcode) [![Build Status](https://secure.travis-ci.org/glguy/intcode.png?branch=master)](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).