package Makeshift.example.top; // Changes to this file immediately affect the next build. Treat it as a build script. /** An example of a build resource for the use of other projects. */ public final class Helper { private Helper() {} /** Pretends to help build another project’s software. * * @param project The proper package of the project to help. */ public static void help( final String project ) { Makeshift.Bootstrap.printProgressLeader( project, "topHelper" ); System.out.println( 1 ); }} // Copyright © 2020 Michael Allan. Licence MIT.