log function

dynamic log([
  1. dynamic value
])

Implementation

log([value]) {
  print(value ?? "");
}