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 Sep 19, 2017
·
2 revisions
using Neo.SmartContract.Framework;
using Neo.SmartContract.Framework.Services.Neo;
using System.Numerics;
public class HelloWorld : SmartContract
{
public static BigInteger Main()
{
return Storage.Get(Storage.CurrentContext, "Hello").AsBigInteger();
}
}