Initial commit

This commit is contained in:
Mark J Price 2022-03-06 10:37:59 +00:00
parent dd097904c2
commit 2b1f5c1254
48 changed files with 36395 additions and 0 deletions

View file

@ -0,0 +1,9 @@
partial class Program
{
static bool NameLongerThanFour(string name)
{
return name.Length > 4;
}
}