unikud / app.py
malper's picture
Update app.py
437c19b
raw
history blame
130 Bytes
import streamlit as st
text = st.text_area('Enter Hebrew text')
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)