aoc19intcode 0.3.0

A standalone Advent of Code 2019 Intcode VM implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# A standalone Advent of Code 2019 Intcode VM implementation

[![aoc19intcode](https://docs.rs/aoc19intcode/badge.svg)](https://docs.rs/aoc19intcode)

That's it. IDK what else to tell ya.

## Examples

```rs
use aoc19intcode::IntcodeVM;
assert_eq!(
    IntcodeVM::from_prog(&[2, 4, 4, 5, 99, 0])
        .run_prog()
        .unwrap()[5],
    9801
);
```