Spaces:
Sleeping
Sleeping
from fastapi import FastAPI | |
app = FastAPI() | |
def greet_json(): | |
return {"Hello": "GWBASIC!"} | |
import subprocess | |
def run_emulator(): | |
subprocess.run([ | |
"java", | |
"-cp", "target/scala-2.13/javapc-assembly-0.431.jar", | |
"org.ldaniels528.javapc.ibmpc.app.IbmPcEmulator" | |
]) | |
run_emulator() | |