testing real quick

This commit is contained in:
Becca 2015-09-14 16:59:59 -05:00
parent 7c252e3746
commit 0678531d81
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
#include "db_engine.h"
db_engine::db_engine(){
//
//USELESS COMMENT
}
//create a new table in memory

View file

@ -1,5 +1,5 @@
class db_engine {
//member variables
//useless comment
public:
db_engine();

View file

@ -1,5 +1,5 @@
#include <iostream>
int main() {
std::cout << "Hello World!";
std::cout << "Hello nothing!";
}