Skip to content

Commit

Permalink
Placed ascii art in raw string.
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelClerx committed Jun 19, 2024
1 parent a51d91a commit 8eede68
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions nevis/_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ def time(self):
#
def howdy(name='version'):
""" Say hi the old fashioned way. """
print('')
print(' |> ')
print(' Starting Ben | Nevis ')
print(' / \ ' + name)
print(' /\/---\ ' + nevis.__version__)
print(' /--- \/\ ')
print(' /\/ /\ / \ ')
print(' /\/ \ / \_/ \ ')
print(' / \/ \ ')
print(r'')
print(r' |> ')
print(r' Starting Ben | Nevis ')
print(r' / \ ' + name)
print(r' /\/---\ ' + nevis.__version__)
print(r' /--- \/\ ')
print(r' /\/ /\ / \ ')
print(r' /\/ \ / \_/ \ ')
print(r' / \/ \ ')


def print_result(x, y, z):
Expand Down

0 comments on commit 8eede68

Please sign in to comment.