code makes up the feed and OPML parsers? Well under 1%, I’d bet. The rest might as well be in Lua or JavaScript, and users would never feel the difference, because there would hardly be a difference. - Brent Simmons /ele-brent
3.1415926545880506 total time taken is: 6.658s #JS $ gopherjs run main.go approximating pi with 1000000000 iterations. 3.1415926545880506 total time taken is: 6.549s #C $ gcc -O3 main.c $ time ./a.out approximating pi with 1000000000 iterations. 3.1415926545880506 real 0m6.434s user 0m6.427s sys 0m0.004s
from 'react-dom' import os from "os"; class Root extends Component { componentDidMount() { console.log(`The home directory is ${os.homedir()}`); } render() { return ( <p> React is loaded!</p> ); } } render(<Root />, appTarget);