package com.j3ltd.java15changes;

import static java.lang.System.*;

public class Miscellaneous {

	static void print(Object...objects) {
		for (Object o : objects) {
			out.print(o);
		}
	}
	
	public static void main(String[] args) {
		// System.out.* imported as a static import
		out.printf("Demonstration of the new printf method %d\n", 10);
		print("demonstration of a varargs ", "method ", 
				"call ", 10, " \n");
	}

}
