sourceoftruthdata's picture
Add application file
81e52b2
raw
history blame
177 Bytes
##################################
# test app set up
##################################
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)