标签: prolog
我想运行文件prolog >>> price = 478.23 >>> f"{f'${price:0.2f}':*>20s}" '*************$478.23' 并在浏览器中查看结果,并在文件prolog中添加了三行。但它不起作用。你们能告诉我为什么吗?所有
>>> price = 478.23 >>> f"{f'${price:0.2f}':*>20s}" '*************$478.23'
enter image description here
答案 0 :(得分:0)
你必须定义一个http_handler来告诉prolog它在收到请求时应该运行哪个谓词。
http_handler
% tells prolog to call process_request :- http_handler(root(.), process_request, []). process_request(_Request) :- % your code here .
可以找到一个简单的“Hello World”示例示例here;查看here以获取更详细的教程。