eduardo-meik commited on
Commit
17ee792
1 Parent(s): 2ea4c52

Add application file

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,3 +1,4 @@
1
  import streamlit as st
2
 
3
- st.title("Hello World")
 
 
1
  import streamlit as st
2
 
3
+ x = st.slider('Select a value')
4
+ st.write(x, 'squared is', x * x)