justheuristic commited on
Commit
f57db59
·
1 Parent(s): 8a24f9d
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+
4
+ st.markdown("### Hello dude!")
5
+
6
+
7
+ text = st.text_area("please enter text", value="dummy")
8
+ output = text[::-1]
9
+ st.markdown(output)