// SPDX-FileCopyrightText: 2024 Himbeer // // SPDX-License-Identifier: AGPL-3.0-or-later const srvre_sys = @import("srvre_sys"); const os = srvre_sys.os; usingnamespace srvre_sys; pub fn main() void { _ = os.consoleWrite("Hello from program 2\r\n") catch unreachable; os.pass(0, 0, false, "Anonymous message") catch unreachable; os.pass(0, 0, true, "Identified message") catch unreachable; os.pass(1, 0, false, "Mischanneled message") catch unreachable; os.pass(0, 1, false, "Unicast message") catch unreachable; os.pass(0, 2, false, "Misdirected message") catch unreachable; }