mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
9 lines
169 B
C++
9 lines
169 B
C++
#include <AK/Format.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibMain/Main.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments)
|
|
{
|
|
outln("Hello friends!");
|
|
return 0;
|
|
}
|