Spaces:
Runtime error
Runtime error
import streamlit as st | |
st.markdown("### Hello dude!") | |
text = st.text_area("please enter text", value="dummy") | |
output = text[::-1] | |
st.markdown(output) | |