File size: 284 Bytes
05f21d6
 
8edc36a
05f21d6
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr

with gr.Blocks() as demo:
    gr.Code(
        value="""def hello_world():
    return "Hello, world!"
    
print(hello_world())""",
        language="python",
        interactive=True,
        show_label=False,
    )

if __name__ == "__main__":
    demo.launch()