All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax0.jamal.prog.commands.Output Maven / Gradle / Ivy

There is a newer version: 2.8.1
Show newest version
package javax0.jamal.prog.commands;

import javax0.jamal.api.BadSyntax;

public class Output implements Command {
    private final Expression expression;

    public Output(final Expression expression) {
        this.expression = expression;
    }

    @Override
    public String execute(final Context ctx) throws BadSyntax {
        ctx.step();
        return expression.execute(ctx);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy