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_inc2sys.h
2022-03-06 23:37:05 +00:00

19 lines
382 B
C
Executable file

! This include appears after the functions are called (so they are forward
! definitions); it is a system file.
System_file;
! Will be replaced (entirely).
[ funczeta;
print "original funczeta.^";
failures++; ! Should not be called.
return 7;
];
! Will be replaced, but will live on as functhetaorig.
[ functheta;
print "original functheta.^";
return 8;
];