https://github.com/avanov/bootstrapping
A set of reminders of environment bootstrapping
https://github.com/avanov/bootstrapping
Last synced: 5 months ago
JSON representation
A set of reminders of environment bootstrapping
- Host: GitHub
- URL: https://github.com/avanov/bootstrapping
- Owner: avanov
- License: mit
- Created: 2017-12-31T13:50:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-03T20:10:40.000Z (over 8 years ago)
- Last Synced: 2025-06-05T09:18:50.448Z (about 1 year ago)
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
=============
Bootstrapping
=============
A set of reminders of environment bootstrapping
OSX
===
Rust
----
..code-block:: bash
curl https://sh.rustup.rs -sSf | sh
. ~/.cargo/env
rustup update
* Read https://doc.rust-lang.org/book/second-edition/ch01-02-hello-world.html
* Use playground for trying doc examples https://play.rust-lang.org/
* Use stdlib reference for getting details about data types https://doc.rust-lang.org/std/
..code-block:: bash
cargo new myapp --bin && cd myapp
cargo run
cargo run --release
Haskell
-------
..code-block:: bash
$ brew install haskell-stack
* Read https://www.yesodweb.com/page/quickstart