mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
16 lines
244 B
C
16 lines
244 B
C
![]() |
/*
|
||
|
* Copyright (c) 2021, Mahmoud Mandour <ma.mandourr@gmail.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/StringView.h>
|
||
|
|
||
|
namespace Core::Version {
|
||
|
|
||
|
constexpr StringView SERENITY_VERSION = "Version 1.0"sv;
|
||
|
|
||
|
}
|