mirror of
https://github.com/helix-editor/helix
synced 2026-08-05 14:42:57 +02:00
11 lines
234 B
Zig
11 lines
234 B
Zig
const std = @import("std");
|
|
// ^ @keyword.control.import
|
|
pub fn main() void {
|
|
obj.doThing();
|
|
// ^ @function.method
|
|
helper(x);
|
|
// ^ @function
|
|
const y = obj.field;
|
|
// ^ @variable.other.member
|
|
}
|