Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 189 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 189 Bytes

interloper

func main() s32
{
    buf : c8[256];

    std::print("Enter some text: ");

    out := std::read_string(buf);

    std::print("You said: {}\n",out);

    return 0;
}