r define nested empty list

# Define a nested empty list
nested_empty_list <- list(inner_list = list())

# Explanation:
# 1. Use the list() function to create an empty inner list.
# 2. Assign the inner list to the "inner_list" key within another list using the list() function.