01: /* *****************************************************************************
02: * Main.java
03: * ****************************************************************************/
04:
05: package org.openlaszlo.sc;
06:
07: public class Main {
08: public static void main(String args[]) {
09: int status = new lzsc().compile(args);
10: if (status != 0) {
11: java.lang.System.exit(status);
12: }
13: }
14: }
15:
16: /* J_LZ_COPYRIGHT_BEGIN *******************************************************
17: * Copyright 2001-2007 Laszlo Systems, Inc. All Rights Reserved. *
18: * Use is subject to license terms. *
19: * J_LZ_COPYRIGHT_END *********************************************************/
|