view src/alice/test/codesegment/api/TestApiAlice.java @ 198:f151dea22b2c working

add flip api
author sugi
date Tue, 19 Mar 2013 01:25:09 +0900
parents 117dad267a9b
children
line wrap: on
line source

package alice.test.codesegment.api;

import alice.daemon.AliceDaemon;
import alice.daemon.Config;

public class TestApiAlice {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		new AliceDaemon(new Config(args)).listen();
		new StartCodeSegment(args).execute();
	}

}