Zernit/tests/vlang/hellocheck_test.v
2020-02-07 19:23:09 +00:00

9 lines
127 B
V

// Blocked by https://github.com/vlang/v/issues/3674
module main
fn hellocheck() {
if hello != "Hello World" {
exit 1
}
}