Beispiel #1
0
        public string Execute(FungeContext fungeContext)
        {
            if (!fungeContext.IsSupported(this))
            {
                return($"{fungeContext.Version} not supporting  {Name} command");
            }

            var error = RealExecute(fungeContext);

            fungeContext.MoveOnce();
            return(error);
        }