1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-16 22:14:23 +03:00
inform7/inform6/Tests/include/replacerenametest/replacerename_inc1.h
2022-03-06 23:37:05 +00:00

17 lines
341 B
C
Executable file

! This include appears before the functions are called; it is not a system
! file.
! Will be replaced (entirely).
[ funcalpha;
print "original funcalpha.^";
failures++; ! Should not be called.
return 1;
];
! Will be replaced, but will live on as funcgammaorig.
[ funcgamma;
print "original funcgamma.^";
return 2;
];