Move sources to "pegp" package.

This commit is contained in:
Josh Holtrop 2021-02-21 19:43:41 -05:00
parent 6033454b8d
commit 5af626e443
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,6 @@
module pegp.main;
import std.stdio;
import state;
import pegp.state;
int main(string[] args)
{

View File

@ -1,3 +1,5 @@
module pegp.state;
class State
{
private int m_size;