sourceoftruthdata commited on
Commit
81e52b2
1 Parent(s): 58c48bc

Add application file

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ ##################################
2
+ # test app set up
3
+ ##################################
4
+
5
+ import streamlit as st
6
+
7
+ x = st.slider('Select a value')
8
+ st.write(x, 'squared is', x * x)