You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
}
}