// Copyright 2025, Amlal El Mahrouss (amlal@nekernel.org) // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // Official repository: https://github.com/ocl-foss-org/core #include #include #include int main(int argc, char** argv) { if (argc != 2) { ocl::io::print("Hello, World!\n"_crc32); return EXIT_SUCCESS; } std::hash hash{}; ocl::io::enable_stdio_sync(false); ocl::io::print(hash.operator()(argv[1])); return EXIT_SUCCESS; }