Combinatorics

Module

Functions

julia> vector_of_products(["hungry"],["yes","no"])
2-element Vector{Tuple{String, String}}:
 ("hungry", "yes")
 ("hungry", "no")
julia> vector_of_combinations(["hungry","yes","no"])
3-element Vector{Tuple{String, String}}:
 ("hungry", "yes")
 ("hungry", "no")
 ("yes", "no")