From a4bcdefbd505835a0904c0882a638606a5502000 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Tue, 25 Aug 2015 17:40:49 +0200 Subject: [PATCH] Pre-publish rust setup post --- _drafts/rust-setup.md => _posts/2015-08-26-rust-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename _drafts/rust-setup.md => _posts/2015-08-26-rust-setup.md (99%) diff --git a/_drafts/rust-setup.md b/_posts/2015-08-26-rust-setup.md similarity index 99% rename from _drafts/rust-setup.md rename to _posts/2015-08-26-rust-setup.md index d5934018..ec0d3e9f 100644 --- a/_drafts/rust-setup.md +++ b/_posts/2015-08-26-rust-setup.md @@ -1,6 +1,6 @@ --- layout: post -title: 'Setup Rust' +title: '[DRAFT] Setup Rust' category: 'rust-os' --- In the previous posts we created a [minimal Multiboot kernel][multiboot post] and [switched to Long Mode][long mode post]. Now we can finally switch to sweet Rust code. [Rust] is a beautiful high-level language that has no runtime. It allows us to not link the standard library and write bare metal code. Unfortunately the setup is not quite hassle-free yet.