File size: 182 Bytes
5ee1e0e
 
69222bc
 
 
 
 
b182a83
69222bc
1
2
3
4
5
6
7
8
9
import streamlit as st

#x = st.slider('Select a value')
#st.write(x, 'squared is', x * x)

if st.button('Say hello'):
     st.write('Why hello there')
else:
     st.write('Goodbye')