Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
asynchronousai
/
roblox-cs
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bb4c477
roblox-cs
/
app.py
asynchronousai
Update app.py
bb4c477
verified
7 months ago
raw
Copy download link
history
blame
Safe
146 Bytes
import
gradio
as
gr
def
compile
(
cs
):
return
cs+
" (but in lua)"
demo = gr.Interface(fn=
compile
, inputs=
"text"
, outputs=
"text"
)
demo.launch()