Skip to content
tanyuan edited this page Jul 28, 2017 · 2 revisions
using Neo.SmartContract.Framework;
using Neo.SmartContract.Framework.Services.Neo;

class A : FunctionCode
{
    public static int Main(int a, int b) 
    {
        return a * b;
    }
}

执行码:52C56B6C766B00527AC46C766B51527AC46C766B00C36C766B51C395616C7566

输入:2,3

输出:6

Clone this wiki locally