aboutsummaryrefslogtreecommitdiff
path: root/tests/core/test_funcs.in
blob: 3619faec9cd377a666eb4f781303c8b2c43346b9 (plain)
1
2
3
4
5
6
#include <stdio.h>
int funcy(int x) { return x * 9; }
int main() {
  printf("*%d,%d*\n", funcy(8), funcy(10));
  return 0;
}