Spaces:
Runtime error
Runtime error
import streamlit as st | |
def main(): | |
st.title("Hello, World!") | |
st.write("This is a basic Streamlit app.") | |
if __name__ == '__main__': | |
main() | |