mirror of
https://github.com/openfaas/faas.git
synced 2025-06-12 10:16:46 +00:00
26 lines
515 B
C#
26 lines
515 B
C#
using System;
|
|
using System.Text;
|
|
|
|
namespace root
|
|
{
|
|
class Program
|
|
{
|
|
private static string getStdin() {
|
|
StringBuilder buffer = new StringBuilder();
|
|
string s;
|
|
while ((s = Console.ReadLine()) != null)
|
|
{
|
|
buffer.AppendLine(s);
|
|
}
|
|
return buffer.ToString();
|
|
}
|
|
|
|
static void Main(string[] args)
|
|
{
|
|
string buffer = getStdin();
|
|
|
|
Console.WriteLine(buffer);
|
|
}
|
|
}
|
|
}
|