mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 13:15:08 +00:00

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.
11 lines
127 B
C++
11 lines
127 B
C++
#include "Class1.h"
|
|
#include <AK/Format.h>
|
|
|
|
namespace $LibName {
|
|
|
|
void Class1::hello()
|
|
{
|
|
out("Hello friends! :^)\n");
|
|
}
|
|
|
|
}
|