mirror of
https://github.com/ziglang/zig.git
synced 2026-01-27 01:35:23 +00:00
`checkNotPresent` is the inverse of `checkNext` - if the phrase is found in the output, then it fails the test.
15 lines
181 B
C
15 lines
181 B
C
#include <stdio.h>
|
|
|
|
void printMe() {
|
|
printf("Hello!\n");
|
|
}
|
|
|
|
int main(int argc, char* argv[]) {
|
|
printMe();
|
|
return 0;
|
|
}
|
|
|
|
void iAmUnused() {
|
|
printf("YOU SHALL NOT PASS!\n");
|
|
}
|