class Test {

    public static void helloRust() {
        System.out.println("Hello Rust!");
    }

    public static void main(String [] args) {
        helloRust();
    }
}
