An open API service indexing awesome lists of open source software.

https://github.com/dynesshely/csharpell

A shell (REPL) for C# file and execute them as script.
https://github.com/dynesshely/csharpell

csharp executor pythonic shell

Last synced: 5 months ago
JSON representation

A shell (REPL) for C# file and execute them as script.

Awesome Lists containing this project

README

          

# Csharpell

Csharp + shell = Csharpell !

# About

## What can this do ?

You can use this as a interactive shell for C#.

And you can also use this tool to execute C# script.

# Usage

Use this as C# script file executer.

Below realized.

```shell
# Interactive shell
csharpell -i

# Without arguments, goto interactive shell
csharpell
```

Below not realized.

```shell
# Default, execute Program.cs
csharpell .

# Execute Program.cs
csharpell Program.cs
```

# Build

```shell
# Get source codes
git clone git@github.com:Dynesshely/Csharpell.git

# Change working directory
cd Csharpell/Csharpell

# Build with dotnet sdk
dotnet build
```