tutorial / app.py
KingZack's picture
Add application file
efc5f0f
raw
history blame contribute delete
122 Bytes
import streamlit as st
st.markdown('#Hello HuggingFace')
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)