在vscode中如何关闭genie web服务?

在vscode 中 编写以下代码:
using Genie,Genie.Router
route(“/hello”) do
“Hello World”
end
up()
在浏览器输入:http://127.0.0.1:8000/hello后正常运行,请问此时如何在vscode中关闭web服务呢?(在vscode命令行输入exit后,http://127.0.0.1:8000/hello依然能访问)

已找到,CTRL+D 退出