view Test/Example/HelloWorld/FinishHelloWorld.cs @ 31:6399d784c6d1

add FizzBuzz Test
author riono <e165729@ie.u-ryukyu.ac.jp>
date Tue, 13 Apr 2021 18:25:15 +0900
parents 96fc5e71274e
children 9e31b8c7a5bd
line wrap: on
line source

using System;
using Christie_net.annotation;
using Christie_net.codegear;

namespace Christie_net.Test.Example.HelloWorld {
public class FinishHelloWorld : CodeGear {
    [Take] private string hello;
    [Take] private string world;

    public override void Run(CodeGearManager cgm) {
        //Console.WriteLine("fin:" + hello + " " + world);
        cgm.GetLocalDGM().Finish();
    }
}
}