1 52 53 package freemarker.core; 54 55 import freemarker.template.*; 56 57 63 public class CommandLine { 64 65 public static void main(String [] args) { 66 System.out.println(); 67 System.out.print("FreeMarker version "); 68 System.out.println(Configuration.getVersionNumber()); 69 System.out.println(); 70 System.out.println("Copyright (c) 2003 The Visigoth Software Society."); 71 System.out.println("All rights reserved."); 72 System.out.println(); 73 System.out.println("This is Free software. Please read the LICENSE.txt comes with "); 74 System.out.println("the distribution for more details."); 75 System.out.println(); 76 System.out.println("For more information and for updates visit our WWW site:"); 77 System.out.println("http://freemarker.org/"); 78 System.out.println(); 79 } 80 } | Popular Tags |