• Contact Us
  • We are a dedicated and quite group of technologists.

Python

powerful... and fast

Hello, World!

# hello.py
def main():
  message = 'hello, world!'
  print(message)

if __name__ == '__main__':
  main()