Spaces:
Runtime error
Runtime error
Marissa Gerchick
commited on
Commit
·
69222bc
1
Parent(s):
5ee1e0e
testing
Browse files
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')
|