美文网首页
python golang rust 粗略对比

python golang rust 粗略对比

作者: Nuko | 来源:发表于2018-11-07 18:38 被阅读0次

打开一个网页的时间

golang


    <script>
        window.rootPath = "../../";
        window.currentCrate = "curl";
    </script>
    <script src="../../../../main-20170921-1.22.0-dev-b1cfd1750.js"></script>
    <script defer="" src="../../search-index.js"></script>



</div>
</body>
</html>

> Elapsed: 2.512s

python

    <script>
        window.rootPath = "../../";
        window.currentCrate = "curl";
    </script>
    <script src="../../../../main-20170921-1.22.0-dev-b1cfd1750.js"></script>
    <script defer="" src="../../search-index.js"></script>



</div>
</body>
</html>

[Finished in 1.5s]

rust

functions by type signature (e.g.\n                    <code>vec -&gt; usize</code> or <code>* -&gt; vec</code>)\n                </p>\n            </div>\n        </div>\n    </aside>\n\n    \n\n    <script>\n        window.rootPath = \"../../\";\n        window.currentCrate = \"curl\";\n    </script>\n    <script src=\"../../../../main-20170921-1.22.0-dev-b1cfd1750.js\"></script>\n    <script defer=\"\" src=\"../../search-index.js\"></script>\n\n\n\n</div>\n</body>\n</html>\n"
[Finished in 11.9s]

相关文章

网友评论

      本文标题:python golang rust 粗略对比

      本文链接:https://www.haomeiwen.com/subject/vhxbxqtx.html