Skip to main content

Strip your java source code to make it naked.

Project description

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
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

amanda-0.2-py3-none-any.whl (2.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page