view paper/source/StartCodeSegment.java @ 0:0127effb8fcd

first commit
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Tue, 05 May 2015 15:36:41 +0900
parents
children
line wrap: on
line source

public class StartCodeSegment extends CodeSegment {

    @Override
    public void run() {
        new TestCodeSegment();

        int count = 0;
        ods.update("local", "cnt", count);
    }

}