print method

T print({
  1. CPrint? arg,
})

打印

Implementation

T print({CPrint? arg}) {
  return push(arg ??= CPrint());
}