tejasmr
-
PythonPrint
by: tejasmr- 3,563 total downloads
- last updated 9/20/2022
- Latest version: 1.0.6
Print function for C# just like in python! ```cs using static Print.Print; class A { static void Main() { print(1, 2, "hi"); int[] arr = {1, 2, 3, 4}; print(arr); } } ```