Example of stubbed out functions

def printIntro():
    """
    Print introductory text for the user.
     returns: None
    """

    print("in printIntro") # debug print stmt (remove after implement)

    # TODO: impelment this, just return for now
    return


def rollOne():
    """
    Randomly roll one die.
      returns: an int value between 1 and 6 representing the die roll.
    """

    print("in rollOne")  # debug print stmt (remove after implement)

    # TODO: implement later using the random library
    # for now, just return a sample value
    return 1


def rollDice(n):
    """
    Randomly roll n dice.
       n: the number of dice to roll (and int).
       returns: a list of int length n, containing the rolls of the n
                dice (each values between 1-6)
    """

    print("in rollDice")  # debug print stmt (remove after implement)

    # TODO: implement this, making calls to rollOne
    # for now, just return a sample list of n 1's
    return [1]*n