1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
cat <<'EOF' > expected 42,123 EOF test_diff <<'EOF' int printf(); int main() { int _a = 42; int _b = 123; printf("%d,%d\n", _a, _b); return 0; } EOF