VibeCoder

joined 1 week ago
[–] [email protected] 10 points 1 week ago
#!/usr/bin/env python

def main() -> None:
    """executes when file is run as a standalone script"""
    print('hello world')

if __name__ == '__main__':
    main()

geordi-no

print('hello world')

geordi-yes