mirror of
https://github.com/HappyTanuki/BumbleCee.git
synced 2025-12-18 21:23:29 +00:00
스킵 구현
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* @brief This is a function that does some cool stuff.
|
||||
* More stuff here will still go in brief!
|
||||
* @warning This does nothing!
|
||||
*/
|
||||
func_name();
|
||||
|
||||
/*
|
||||
* @brief This turns a name into a meme name!
|
||||
*
|
||||
* @param name The name of the user that you want to meme-ify.
|
||||
* @return a meme name!
|
||||
*/
|
||||
std::string name_to_meme(const std::string& name) const;
|
||||
|
||||
/* -------------------- .cpp file -------------------- */
|
||||
|
||||
int main() {
|
||||
/* We are now going to do some cool stuff. */
|
||||
func_name();
|
||||
|
||||
/* Going to turn brain into a meme name.
|
||||
* Why?
|
||||
* Because why not. That's why.
|
||||
*/
|
||||
std::cout << name_to_meme("Brain") << "\n";
|
||||
}
|
||||
Reference in New Issue
Block a user