6 lines
147 B
Text
6 lines
147 B
Text
1..50 | ForEach-Object {
|
|
[PSCustomObject]@{
|
|
SuperbowlNumber = $_
|
|
SuperbowlNumeral = ConvertTo-RomanNumeral -Number $_
|
|
}
|
|
}
|