Newer
Older
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
int main() {
assert(1 == 1);
assert(1 + 1 == 2);
puts("yay!");
if (assert(0 == 0), 1) {
puts("groovy!");
}
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
int main() {
assert(1 == 1);
assert(1 + 1 == 2);
puts("yay!");
if (assert(0 == 0), 1) {
puts("groovy!");
}