File size: 192 Bytes
526afa6
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import streamlit as st

# Title of the application
st.title('Hello, World!')

# A button that when clicked will show a message
if st.button('Say hello'):
    st.write('Hello from Streamlit!')