9 lines
227 B
Python
9 lines
227 B
Python
# SPDX-FileCopyrightText: 2023-present Waylon S. Walker <waylon@waylonwalker.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
from marvin_sw_text_adventure.game import game
|
|
|
|
sys.exit(game())
|