Marissa Gerchick commited on
Commit
69222bc
·
1 Parent(s): 5ee1e0e
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -1,4 +1,9 @@
1
  import streamlit as st
2
 
3
- x = st.slider('Select a value')
4
- st.write(x, 'squared is', x * x)
 
 
 
 
 
 
1
  import streamlit as st
2
 
3
+ #x = st.slider('Select a value')
4
+ #st.write(x, 'squared is', x * x)
5
+
6
+ if st.button('Say hello'):
7
+ st.write('Why hello there')
8
+ else:
9
+ st.write('Goodbye')