Spaces:
Sleeping
Sleeping
| import streamlit as st | |
| st.title("try my demo app") | |
| st.markdown("this is my description") | |
| x = st.slider("select a value") | |
| st.write(x, "squared is", x * x) | |