1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-21 13:15:08 +00:00
serenity/Base/res/devel/templates/cpp-library/Class1.cpp
kleines Filmröllchen fd68e9f1ac Base: Split out cpp-library template files into actual files
These were part of the postcreate script previously, but with the new
powers of sed, we can text-replace the library name and make changing
them much more convenient.
2023-05-05 02:15:43 +03:30

11 lines
127 B
C++

#include "Class1.h"
#include <AK/Format.h>
namespace $LibName {
void Class1::hello()
{
out("Hello friends! :^)\n");
}
}