aboutsummaryrefslogtreecommitdiff
path: root/gfsm/gfsm/src/libgfsm/tests/commatest.c
blob: b7049700987b62adfeed8723638c154d5b372582 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main (void) {
  int x = 0;

  x = 1, printf("foo\n"), printf("bar\n"), x=2, printf("%d\n", x);
  return 0;
}