forked from KolibriOS/kolibrios
b5e7b54c7a
git-svn-id: svn://kolibrios.org@6429 a494cfbc-eb01-0410-851d-a64ba20cac60
19 lines
231 B
C
19 lines
231 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
int a;
|
|
a = 42;
|
|
printf("%d\n", a);
|
|
|
|
int b = 64;
|
|
printf("%d\n", b);
|
|
|
|
int c = 12, d = 34;
|
|
printf("%d, %d\n", c, d);
|
|
|
|
return 0;
|
|
}
|
|
|
|
// vim: set expandtab ts=4 sw=3 sts=3 tw=80 :
|