Skip to content

Commit

Permalink
Create main.cpp
Browse files Browse the repository at this point in the history
for demo
  • Loading branch information
wenpinn authored Oct 5, 2023
0 parents commit 5e9baec
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include <iostream>
using namespace std;
int Fib(int n)
{
return 1;
}
int main()
{
cout<<Fib(5)<<endl;
return 1;
}

0 comments on commit 5e9baec

Please sign in to comment.