- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NTERA.Engine.Runtime.Base
- {
- public static class Keywords
- {
- public static void DrawLine(EraRuntime runtime, ExecutionSet set)
- {
- runtime.Console.PrintBar();
- }
- }
- }
|