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