advanced code snippet search
asteinhaus on 07/08/07
String center gstring
07/08/07 12:46pm07/08/07 08:45am
def star = '*'def lineof80stars = star * 80 def myName = 'Andreas'def mySister = 'Jana'def gString = "$myName writes groovy scripts! $mySister corrects the mistakes! ;-)"def centerText = star + gString.center(78) + stardef centerEmptyLine = star + " ".center(78) + stardef newline = '\n' print lineof80stars + newlineprintln centerEmptyLineprintln centerTextprintln centerEmptyLineprint lineof80stars
Report this snippet Tweet
Comment:
You need to login to post a comment.