Some checks failed
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-arm64:latest, aarch64-linux-gnu, arm64) (push) Successful in 2m37s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-arm:latest, arm-linux-gnueabihf, arm7) (push) Successful in 2m37s
Build and Deploy on Tag / 🔨 Build for PowerPC (push) Successful in 2m58s
Build and Deploy on Tag / 🔨 Build win32 and update the tap 🍺 (push) Failing after 3m36s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-riscv64:latest, riscv64-linux-gnu, riscv64) (push) Successful in 2m19s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-x64:latest, x86_64-linux-gnu, amd64) (push) Successful in 2m21s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-x86:latest, i386-linux-gnu, 386) (push) Successful in 2m6s
14 lines
522 B
C++
14 lines
522 B
C++
#include <TessesFramework/TessesFramework.hpp>
|
|
|
|
int main(int argc, char **argv) {
|
|
using namespace Tesses::Framework;
|
|
using namespace Tesses::Framework::TextStreams;
|
|
Tesses::Framework::TF_InitWithConsole();
|
|
StdOut() << "TimeZone Standard Offset: "
|
|
<< (int64_t)(Date::GetTimeZone() / 3600) << NewLine();
|
|
StdOut() << (Date::TimeZoneSupportDST() ? "TimeZone Supports DST"
|
|
: "TimeZone Doesn't Support DST")
|
|
<< NewLine();
|
|
|
|
return 0;
|
|
} |