Skip to content

Commit 96ea632

Browse files
authored
Create apple_turnover.cpp
1 parent ee32fc8 commit 96ea632

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

8kyu/apple_turnover.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#include <string>
2+
3+
std::string apple(int x) {
4+
return (x*x > 1000) ? "It's hotter than the sun!!" : "Help yourself to a honeycomb Yorkie for the glovebox.";
5+
}

0 commit comments

Comments
 (0)