decoy Home
Status: Planning
Brought to you by:
breese
Decoy is a program instrumentation extension for the clang compiler.
Program instrumentation is done via the Decoy programming language.
@begin
{
print("Program starts");
}
@end
{
print("Program stops");
}
@enter:main
{
print("Entering main()");
}
@leave:main
{
print("Leaving main()");
}