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

org.eolang.maven.transpiler.medium2target.TranslationCommons Maven / Gradle / Ivy

The newest version!
package org.eolang.maven.transpiler.medium2target;

import org.ainslec.picocog.PicoWriter;

/**
 *
 */
public class TranslationCommons {

    public static void bigComment(PicoWriter w, String... commentLines) {
        w.writeln("/**");
        for (String s : commentLines) {
            w.writeln(String.format(" * %s", s));
        }
        w.writeln(" */");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy