Fixed some errors and typo
This commit is contained in:
parent
adca5dea55
commit
7e7cbaf0e2
|
@ -1,6 +1,6 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include "include/print.h"
|
#include "print.h"
|
||||||
use namespace std;
|
using namespace std;
|
||||||
|
|
||||||
class Intro {
|
class Intro {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
#include "include/intro.h"
|
#include "include/intro.h"
|
||||||
#include "include/print.h"
|
|
||||||
|
|
||||||
void Intro::intro(){
|
void Intro::intro(){
|
||||||
Print print;
|
Print print;
|
||||||
pint.println("")
|
print.println("");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue