freddyaboulton HF Staff commited on
Commit
ea4f756
·
verified ·
1 Parent(s): 93feda4

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks() as demo:
4
+ gr.Markdown(
5
+ value="""
6
+ ### Python code
7
+ ```python
8
+ def hello_world():
9
+ print("Hello, world!")
10
+ ```
11
+ """)
12
+
13
+ demo.launch()