Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Light-City committed Apr 10, 2022
1 parent 3901772 commit 56e738e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions basic_content/const/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,9 +309,11 @@ Apple::Apple(int i):apple_number(i)
}
int Apple::add(int num){
take(num);
return num;
}
int Apple::add(int num) const{
take(num);
return num;
}
void Apple::take(int num) const
{
Expand Down

0 comments on commit 56e738e

Please sign in to comment.