#!/usr/bin/env python3
# vertem - notices and documentation at the end of the file

def main () :                                    # called from "main" and the end
  hello ()
  exit (0)

#------------------------------------------------#-------------------------------------------#
def hello () :
  '''Function documentation. Docstring.'''
  print ( 'Vereda Python template' )

#------------------------------------------------#-------------------------------------------#
main ()                                          # goto to "main" and never return
print ( 'ERROR: sentinel after main' )

#------------------------------------------------#-------------------------------------------#
'''
Notices and documentation

title:vertem
description:command template
version:1
date:2023-11-01
relation:Zorro
creator:M.T. Carrasco Benitez
rights:CC BY-SA - Creative Commons Attribution-ShareAlike
'''
##
