47 lines
732 B
Beef
47 lines
732 B
Beef
|
namespace Scarab;
|
||
|
|
||
|
using System;
|
||
|
using System.IO;
|
||
|
using System.Diagnostics;
|
||
|
using System.Interop;
|
||
|
|
||
|
class Program
|
||
|
{
|
||
|
//private static bool _shouldClose = false;
|
||
|
|
||
|
///Close the program once the execution of the current command is finished
|
||
|
//public static void Close() => _shouldClose = true;
|
||
|
|
||
|
public static void Main(String[] args)
|
||
|
{
|
||
|
Console.Read();
|
||
|
|
||
|
|
||
|
/*
|
||
|
while(!_shouldClose)
|
||
|
{
|
||
|
DrawCursor();
|
||
|
var input = Console.ReadLine(.. scope .());
|
||
|
if(input == "exit")
|
||
|
Close();
|
||
|
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
- Load Configuration
|
||
|
- Read Input
|
||
|
- Process Command
|
||
|
*/
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
private static void DrawCursor()
|
||
|
{
|
||
|
var dir = Directory.GetCurrentDirectory(.. scope .());
|
||
|
Console.Write(scope $"{dir}>");
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
}
|