4BallCalc / 4ballcalc.py
LT4Ryan's picture
Upload folder using huggingface_hub
e2755f1 verified
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)