asynchronousai commited on
Commit
bb4c477
·
verified ·
1 Parent(s): b4460d1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
 
3
- def code(name):
4
- return "Hello " + name + "!!"
5
 
6
- demo = gr.Interface(fn=code, inputs="text", outputs="text")
7
  demo.launch()
 
1
  import gradio as gr
2
 
3
+ def compile(cs):
4
+ return cs+" (but in lua)"
5
 
6
+ demo = gr.Interface(fn=compile, inputs="text", outputs="text")
7
  demo.launch()