Zernit/tests/vlang/hellocheck_test.v

9 lines
127 B
Coq
Raw Normal View History

2020-02-07 20:23:09 +01:00
// Blocked by https://github.com/vlang/v/issues/3674
module main
fn hellocheck() {
if hello != "Hello World" {
exit 1
}
}