view src/alice/test/codesegment/TestAlice.java @ 8:78b415d019de

Local DS and CS work! maybe...
author one
date Thu, 12 Jan 2012 16:02:28 +0900
parents
children 22afbb2919f1
line wrap: on
line source

package alice.test.codesegment;

import alice.codesegment.CodeSegment;
import alice.codesegment.CodeSegmentManager;

public class TestAlice {
	public static void main(String args[]) {
		CodeSegment scs = new StartCodeSegment();
		try {
			CodeSegmentManager.get().readyQueue.put(scs);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		
	}
	
}