demo-hse-22 / app.py
justheuristic's picture
app.py
f57db59
raw
history blame
154 Bytes
import streamlit as st
st.markdown("### Hello dude!")
text = st.text_area("please enter text", value="dummy")
output = text[::-1]
st.markdown(output)