020 eol comments

✓ Passing This code compiles and runs correctly.

Code

// Test: End-of-line comments with //
// Koru should support // comments anywhere on a line

const std = @import("std"); // This is an EOL comment

~event greet {} // Event with EOL comment

~proc greet {
    std.debug.print("Hello!\n", .{}); // Print with comment
}

~greet() // Invoke with comment
input.kz

Expected Output

Hello!

Test Configuration

MUST_RUN