1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-07-08 16:36:50 +02:00

Removed the spacing between characters

This commit is contained in:
Markus Fleschutz
2020-12-21 15:09:54 +00:00
parent 4bef8bf9bd
commit e2887fa9cd

@ -13,7 +13,7 @@ function BigA() { param([Int]$Row)
1 { return " __ " } 1 { return " __ " }
2 { return " /__\ " } 2 { return " /__\ " }
3 { return " /(__)\ " } 3 { return " /(__)\ " }
4 { return "(__)(__) " } 4 { return "(__/\__)" }
} }
} }
@ -274,7 +274,7 @@ function Big3() { param([Int]$Row)
switch($Row) { switch($Row) {
1 { return " ___ " } 1 { return " ___ " }
2 { return "(__ )" } 2 { return "(__ )" }
3 { return " (_ \ " } 3 { return " (_ \\" }
4 { return "(___/" } 4 { return "(___/" }
} }
} }