view src/main/java/alice/test/codesegment/local/TestLocalAlice.java @ 655:1c93e82e05c6 default tip

fix timestamp
author suruga
date Sat, 17 Feb 2018 00:33:00 +0900
parents aefbe41fcf12
children 0832af83583f
line wrap: on
line source

package alice.test.codesegment.local;

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

public class TestLocalAlice {
    public static void main(String args[]) {
        new AliceDaemon(new Config(args)).listen(); // logger off
        new StartCodeSegment().execute();
    }

}