mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-10 20:43:12 -04:00
10 lines
120 B
C
10 lines
120 B
C
#include <assert.h>
|
|
#include <stdio.h>
|
|
int a = 431;
|
|
int b = 532;
|
|
|
|
int main()
|
|
{
|
|
assert(a != b);
|
|
assert(a == b);
|
|
} |