Echo multiple tasks if a common function exists

As @Howdy_McGee mentioned in the comments, you can just wrapped the multiple commands you want to run within curly brackets like this:

<?php if (function_exists ('pluginName')) { echo someName (7); echo someName (8); echo someName (9); } ?>