non important commit

This commit is contained in:
maxstrb 2026-02-17 09:11:25 +01:00
parent 0729217b6e
commit b46ffa452f

View file

@ -1 +1,19 @@
#!/usr/bin/env bash
nix develop . --command bash -c "dotnet new console"
rm Program.cs
program="using System;
namespace $1
{
class Program
{
static void Main(string[] args)
{
}
}
}"
echo "$program" >>Program.cs