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.
- Host: GitHub
- URL: https://github.com/dynesshely/csharpell
- Owner: Dynesshely
- License: agpl-3.0
- Created: 2023-06-19T22:00:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-30T17:53:51.000Z (about 1 year ago)
- Last Synced: 2025-09-10T15:01:15.795Z (5 months ago)
- Topics: csharp, executor, pythonic, shell
- Language: C#
- Homepage:
- Size: 53.7 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```