add source code of this project
This commit is contained in:
commit
e89b1ff2a4
|
@ -0,0 +1,6 @@
|
|||
#include <iostream>
|
||||
|
||||
void print(std::string text)
|
||||
{
|
||||
std::cout << text;
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
void print(std::string text);
|
|
@ -0,0 +1,9 @@
|
|||
#include <iostream>
|
||||
#include "printer.h"
|
||||
using namespace std;
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
print("Test");
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue