mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-12 10:44:40 +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.
12 lines
127 B
C++
12 lines
127 B
C++
#include "Class1.h"
|
|
#include <AK/Format.h>
|
|
|
|
namespace $LibName {
|
|
|
|
void Class1::hello()
|
|
{
|
|
out("Hello friends! :^)\n");
|
|
}
|
|
|
|
}
|