如何使用Purescript指定退出代码

时间:2018-03-20 23:46:44

标签: purescript

如果我使用...some imports... @Component({ selector: 'az-pages', encapsulation: ViewEncapsulation.None, templateUrl: './pages.component.html', styleUrls: ['./pages.component.scss'], providers: [ AppState ] }) export class PagesComponent implements OnInit { ...other stuff... 运行以下操作,则流程以状态0结束。

<div class="container-fluid">         
    <div class="row"> 
        <div class="main">
            <router-outlet></router-outlet>
        </div> 
    </div>
</div>

如何在不抛出异常的情况下退出程序错误?

1 个答案:

答案 0 :(得分:1)

如果您在节点上运行(这是pulp run所做的),您应该使用节点设施。具体来说,您想要的功能是Node.Process.exit

import Node.Process(exit)

main = do
    log "Hello sailor!"
    exit 137