2020-12-16 12:40:29 -03:00
|
|
|
/*
|
2022-01-09 02:16:27 -03:00
|
|
|
* Copyright (c) 2020-2022, the SerenityOS developers.
|
2020-12-16 12:40:29 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-12-16 12:40:29 -03:00
|
|
|
*/
|
|
|
|
|
|
2022-01-09 02:16:27 -03:00
|
|
|
#include <LibCore/System.h>
|
|
|
|
|
#include <LibMain/Main.h>
|
2020-12-16 12:40:29 -03:00
|
|
|
|
2022-01-09 02:16:27 -03:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments)
|
2020-12-16 12:40:29 -03:00
|
|
|
{
|
2022-01-09 02:16:27 -03:00
|
|
|
TRY(Core::System::beep());
|
2020-12-16 12:40:29 -03:00
|
|
|
return 0;
|
|
|
|
|
}
|