DanLeBossDeESGI commited on
Commit
d74f527
·
1 Parent(s): 88b5b7e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -1 +1,7 @@
1
- print("Hello World!");
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ def greet(name):
4
+ return "Saluuuuuuuut " + name + "! Monstre !"
5
+
6
+ iface = st.Interface(fn=greet, inputs="text", outputs="text")
7
+ iface.launch()