Ocaml中的If-then-else简化版

时间:2017-01-21 22:01:57

标签: if-statement operators conditional ocaml

我是从Ocaml开始的,其中一个问题是:如何简化这段代码

如果f(x)<然后是f(x)否则h

1 个答案:

答案 0 :(得分:2)

你可以写这个

export class Demo extends React.Component<DemoProps, any> {
    private foo: number;

    constructor(props: DemoProps) {
        super(props);
    }

    scriptContents(){
    //contents of the script in here
    }

    render() {
        return (
            <html>
            <head>

                <script>
                   {this.scriptContents()}
                </script>

            </head>
            <body>
            <div id="root">
                (hello world)
            </div>
            <div>
                <progress id="hot-reload-progress-bar" value="100" max="100"></progress>
            </div>
            </body>
            </html>
        )
    }
}

(我希望这不是学校作业。最好自己解决这些问题。)