comparison paper/source/StartCodeSegment.java @ 22:f55662d3643f

fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 23 Apr 2018 19:50:25 +0900
parents
children
comparison
equal deleted inserted replaced
21:5be85f2a6d07 22:f55662d3643f
1 public class StartCodeSegment extends CodeSegment {
2
3 @Override
4 public void run() {
5 new TestCodeSegment();
6
7 int count = 0;
8 ods.put("local", "cnt", count);
9 }
10
11 }