mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-06-04 06:28:38 +03:00
13 lines
325 B
Zig
13 lines
325 B
Zig
//! Reverse Index (RI) - ESC M
|
|
const std = @import("std");
|
|
|
|
pub fn main() !void {
|
|
const stdout = std.io.getStdOut().writer();
|
|
try stdout.print("A\nB\nC", .{});
|
|
try stdout.print("\x1BM", .{});
|
|
try stdout.print("D\n\n", .{});
|
|
|
|
// const stdin = std.io.getStdIn().reader();
|
|
// _ = try stdin.readByte();
|
|
}
|