Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
drush_print($message = '', $indent = 0)
contributions/drush/drush.inc, line 147
Prints a message.
$message The message to print.
$indent The indentation (space chars)
<?php
function drush_print($message = '', $indent = 0) {
print str_repeat(' ', $indent) . (string)$message . "\n";
}
?>