/* * Copyright (c) 2021, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include ErrorOr serenity_main(Main::Arguments) { TRY(Core::System::pledge("rpath stdio")); outln(TRY(Core::System::getcwd())); return 0; }