img-gen / app.py
wgcv's picture
First demo, ok i worked with this few years ago the second
d14459f
raw
history blame
No virus
152 Bytes
import streamlit as st
st.title("This is a demo")
st.markdown("This is a description")
x = st.slider("Put a number")
st.write(x, "The square is", x*x)