mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 13:20:48 -05:00
10 lines
258 B
Zig
10 lines
258 B
Zig
const std = @import("std");
|
|
const testing = std.testing;
|
|
|
|
const hello_world = @import("hello_world.zig");
|
|
|
|
test "say hi!" {
|
|
const expected = "Hello, World!";
|
|
const actual = hello_world.hello();
|
|
try testing.expectEqualStrings(expected, actual);
|
|
}
|