spigotcpp/main.cpp
A.M. Rowsell aac5409a72 first commit of version ported line by line from python
Not working correctly yet, errors when handling
certain predigits
2023-06-07 02:08:12 -04:00

11 lines
185 B
C++

#include <iostream>
#include "Spigot.hpp"
int main(void) {
Spigot *piSpigot = new Spigot(1000);
for(int i = 0; i < 1000; i++) {
piSpigot->pump();
}
return 0;
}