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

18 lines
347 B
C
Executable file

! This include appears before the functions are called; it is a system file.
System_file;
! Will be replaced (entirely).
[ funcepsilon;
print "original funcepsilon.^";
failures++; ! Should not be called.
return 5;
];
! Will be replaced, but will live on as funcetaorig.
[ funceta;
print "original funceta.^";
return 6;
];