File size: 105 Bytes
44ebc9f
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import streamlit as st


def app():
    st.write("Hello, World!")


if __name__ == "__main__":
    app()