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

https://github.com/tejasmr/pythonprint

Use python-like print function in C#
https://github.com/tejasmr/pythonprint

c-sharp console library print

Last synced: about 15 hours ago
JSON representation

Use python-like print function in C#

Awesome Lists containing this project

README

          

# PythonPrint
Use python like print function in C#

[![NuGet](https://img.shields.io/nuget/v/PythonPrint.svg)](https://www.nuget.org/packages/PythonPrint)
[![NuGet Downloads](https://img.shields.io/nuget/dt/PythonPrint.svg)](https://www.nuget.org/packages/PythonPrint)

## Usage:

```cs
using static Print.Print;

namespace X {
class A {
static void Main() {
print(1, 2, "hi");
int[] arr = {1, 2, 3, 4};
print(arr);
}
}
}
```