id: volume
description: caluculates volume of a block, given width, height and depth

argument-types:
  block:
    width: integer
    height: integer
    depth: integer

return-type:
  volume: integer

default:
  function:
    volume: block.width * block.height * block.depth
