<?php
declare(strict_types=1);
use native_types;
function main()
{
$a = std::decimal("100");
$b = std::decimal("200");
$c = $a | $b;
}