mirror of
https://github.com/tonytins/tomas.git
synced 2025-04-30 03:31:39 -04:00
- Run() loop in the shell is now wrapped in a try-catch statement. - Added Github CI - Removed OSConsts and TermConsts - Programs can now access the programs dictionary directly from the shell
14 lines
No EOL
313 B
C#
14 lines
No EOL
313 B
C#
// I license this project under the GPL 3.0 license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace Tomas.Interface
|
|
{
|
|
public interface IShell
|
|
{
|
|
string ReadLine { get; }
|
|
|
|
Dictionary<string, IProgram> Programs { get; }
|
|
}
|
|
} |