personal monorepo
//! This Source Code Form is subject to the terms of the Mozilla Public
//! License, v. 2.0. If a copy of the MPL was not distributed with this
//! file, You can obtain one at https://mozilla.org/MPL/2.0/.
//!
//! Copyright (c) 2026 Prince Bett <@kodesoul>

// ---- Main

pub fn main(init: std.process.Init) !void {
    const io = init.io;

    var stdout_buffer: [1024]u8 = undefined;
    var stdout_file_writer: Io.File.Writer = .init(.stdout(), io, &stdout_buffer);
    const stdout_writer = &stdout_file_writer.interface;

    try stdout_writer.print("Hello Rafiki\n", .{});

    try stdout_writer.flush();
}

// ---- Imports.

const lush = @import("lush");
const std = @import("std");
const Io = std.Io;