Skip to content

pschaus/strip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

amanda is a tool to strip your java source code to make it naked. This tool is useful to hide solutions in programming exercises.

A file with input:

public int computeSum(int a, int b) {
// STUDENT return 0; // TODO
// BEGIN STRIP
    return a + b; // the solution to hide
// END STRIP
}

Gives as output:

public int computeSum(int a, int b) {
    return 0; // TODO
}

About

comment and uncomment parts of source code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages