cheri-security / MorelloLinux / exampleCode / src / hello / hello.cpp
hello.cpp
Raw
/*
 * Copyright (c) 2023 Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <iostream>

int main(int argc, char *argv[])
{
    std::cout << "hello" << std::endl;
    return 0;
}