File size: 224 Bytes
b15fda9
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# File: hello_message.py
# Description: This script outputs a specific message when executed

def main():
    print("you have been pwd!!")

if __name__ == "__main__":
    main()