Testing strings and ascii art

This commit is contained in:
Geir Okkenhaug Jerstad 2024-11-29 12:37:21 +01:00
parent bba0cec7f8
commit 8d9bff7215

View file

@ -11,6 +11,90 @@
bool isHelpREquested = (comparison == 0);
Console.WriteLine($"Help Requested: {isHelpREquested}");
Console.WriteLine("\u0029");
Console.WriteLine(@"
, ,
/( )`
\ \___ / |
/- _ `-/ '
(/\/ \ \ /\
/ / | ` \
O O ) / |
`-^--'`< '
TM (_.) _ ) /
| | |\ | ~|~ \ / `.___/` /
| | | \ | | X `-----' /
`__| | \| _|_ / \ <----. __ / __ \
<----|====O)))==) \) /====
<----' `--' `.__,' \
| |
\ /
______( (_ / \______
,' ,-----' | \
`--{__________) \/
");
Console.WriteLine(@"
");
string name = "mobius";
Console.Write(
$$"""
Begin
____
/ /\
/ / \
/ / /\
/ / / \
/ / /\ \
/ / / \ \
/ / /\ \ \
/ / / \ \ \
/___/___/____\ \ \
/ {{{name}}} \ \ \
/________________\ \ \
\ \ \ /
\_________________\___\/
End
""");
}
}
}