Compare commits
2 Commits
443de54368
...
74925aa1df
| Author | SHA1 | Date |
|---|---|---|
|
|
74925aa1df | |
|
|
4522050237 |
|
|
@ -1,4 +1,4 @@
|
|||
#include arithmetic.h
|
||||
#include "arithmetic.h"
|
||||
|
||||
int add(int a, int b)
|
||||
{
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -0,0 +1,10 @@
|
|||
#include <iostream>
|
||||
#include "arithmetic.h"
|
||||
int main()
|
||||
{
|
||||
|
||||
std::cout<<"Hello world!"<<std::endl;
|
||||
std::cout<<"c="<<add(1,2)<<std::endl;
|
||||
|
||||
return 0;
|
||||
}
|
||||
Loading…
Reference in New Issue