# ==============================================================================
"""FRAMEWORDS : frame each word of a user-provided list of words"""
# ==============================================================================
__author__  = "Christophe Schlick modified by Philippe Blasi"
__version__ = "1.0"
__date__    = "2022-11-12"
__usage__   = """
User input : <word> [word ...] (where word:str without whitespaces)
App output : several framing modes for the list of words"""
# ==============================================================================
from ezCLI import *
# ------------------------------------------------------------------------------
def framewords(command:str) -> str:
  """several framing modes for the list of words by using the 'grid' function"""
  pass
# ==============================================================================
if __name__ == '__main__':
  userloop(framewords, "Enter <word> [word ...]")
# ==============================================================================
