001/*license*\ 002 XBN-Java Library 003 004 Copyright (C) 2014, Jeff Epstein (aliteralmind __DASH__ github __AT__ yahoo __DOT__ com) 005 006 This software is dual-licensed under the: 007 - Lesser General Public License (LGPL) version 3.0 or, at your option, any later version; 008 - Apache Software License (ASL) version 2.0. 009 010 Either license may be applied at your discretion. More information may be found at 011 - http://en.wikipedia.org/wiki/Multi-licensing. 012 013 The text of both licenses is available in the root directory of this project, under the names LICENSE_lgpl-3.0.txt and LICENSE_asl-2.0.txt. The latest copies may be downloaded at: 014 - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt 015 - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt 016\*license*/ 017package com.github.aliteralmind.codelet.examples.for_testing_only; 018/** 019 <p>For testing {@code {@.codelet.out}}</p> 020 021 <P style="font-size: 125%;"><b>{@code {@.codelet com.github.aliteralmind.codelet.examples.TrivialAppWithCommandLineParams%eliminateCommentBlocksAndPackageDecl()}} 022 <br/>{@code {@.codelet.out com.github.aliteralmind.codelet.examples.for_testing_only.TrivialAppWithCommandLineParams("string one", "string two")}}</b></p> 023 024{@.codelet com.github.aliteralmind.codelet.examples.for_testing_only.TrivialAppWithCommandLineParams%eliminateCommentBlocksAndPackageDecl()} 025{@.codelet.out com.github.aliteralmind.codelet.examples.for_testing_only.TrivialAppWithCommandLineParams("string one", "string two")} 026 027 * @author Copyright (C) 2014, Jeff Epstein, dual-licensed under the LGPL (version 3.0 or later) or the ASL (version 2.0). See source code for details. <code><a href="http://xbnjava.aliteralmind.com">http://xbnjava.aliteralmind.com</a></code>, <code><a href="https://github.com/aliteralmind/xbnjava">https://github.com/aliteralmind/xbnjava</a></code> 028 **/ 029public class TrivialAppWithCommandLineParams { 030 public static final void main(String[] command_lineParameters) { 031 System.out.println("command_lineParameters[0]=\"" + command_lineParameters[0] + "\""); 032 System.out.println("command_lineParameters[1]=\"" + command_lineParameters[1] + "\""); 033 } 034}