main.cs469 chars18 lines
main.py282 chars13 lines
Both of these implementations read a file provided as a command line argument and print its contents on the terminal. The CSharp implementation uses .NET's System.IO
namespace to read the file, while the python implementation uses python's standard file IO operations.
gistlibby LogSnag