Mercurial > hg > Database > Alice
view src/main/java/alice/test/codesegment/api/TestApiAlice.java @ 655:1c93e82e05c6 default tip
fix timestamp
author | suruga |
---|---|
date | Sat, 17 Feb 2018 00:33:00 +0900 |
parents | aefbe41fcf12 |
children | f3f7e256ee03 |
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(); } }