Chapter4/4.2_ObjectOperation/ExportImport/OutputData.ps1

$customObject = @(
    [pscustomObject]@{
        名前 = "John Doe"
        年齢 = 30
        都市 = "東京"
          = "日本"
    },
    [pscustomObject]@{
        名前 = "Jane Roe"
        年齢 = 25
        都市 = "大阪"
          = "日本"
    }
)
$customObject