aocpp/lib/include/intcode/intcode.hpp

10 lines
187 B
C++
Raw Normal View History

2022-11-04 11:36:30 -07:00
#ifndef INTCODE_INTCODE_HPP_
2022-11-04 09:38:01 -07:00
#define INTCODE_INTCODE_HPP_
2022-11-04 17:39:35 -07:00
#include <intcode/Interpreter.hpp>
2022-11-04 09:38:01 -07:00
#include <intcode/Machine.hpp>
#include <intcode/Parser.hpp>
2022-11-04 11:36:30 -07:00
#include <Overload.hpp>
2022-11-04 09:38:01 -07:00
#endif