]> git.scottworley.com Git - snek/blob - snek.py
Amir Rachum's entry_points example from https://amir.rachum.com/blog/2017/07/28/pytho...
[snek] / snek.py
1 ascii_snek = """\
2 --..,_ _,.--.
3 `'.'. .'`__ o `;__.
4 '.'. .'.'` '---'` `
5 '.`'--....--'`.'
6 `'--....--'`
7 """
8
9 def main():
10 print(ascii_snek)
11
12 if __name__ == '__main__':
13 main()