This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
dmspine64backup/test.cpp

8 lines
150 B
C++
Raw Normal View History

2015-09-14 15:04:54 -05:00
#include <iostream>
2015-09-14 16:46:49 -05:00
#include "db_engine.h"
2015-09-14 15:04:54 -05:00
2015-09-14 17:03:23 -05:00
int main() {
2015-09-14 16:46:49 -05:00
db_engine engine;
engine.saveCmd();
2015-09-14 17:03:23 -05:00
std::cout << "succesfully traversed the code!";
2015-09-14 15:04:54 -05:00
}