make the rust series official
This commit is contained in:
parent
76e92378e9
commit
ef0f23b71e
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title: "TL;DR Rust"
|
title: "TL;DR Rust"
|
||||||
date: 2020-09-19
|
date: 2020-09-19
|
||||||
|
series: rust
|
||||||
tags:
|
tags:
|
||||||
- rust
|
|
||||||
- go
|
- go
|
||||||
- golang
|
- golang
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: "Minicompiler: Lexing"
|
title: "Minicompiler: Lexing"
|
||||||
date: 2020-10-29
|
date: 2020-10-29
|
||||||
series: minicompiler
|
series: rust
|
||||||
tags:
|
tags:
|
||||||
- rust
|
- rust
|
||||||
- templeos
|
- templeos
|
||||||
|
@ -36,7 +36,7 @@ This compiler will be written in Rust and will use only the standard library for
|
||||||
everything but the final bytecode compilation and execution phase. There is a
|
everything but the final bytecode compilation and execution phase. There is a
|
||||||
lot going on here, so I expect this to be at least a three part series. The
|
lot going on here, so I expect this to be at least a three part series. The
|
||||||
source code will be in [Xe/minicompiler][Xemincompiler] in case you want to read
|
source code will be in [Xe/minicompiler][Xemincompiler] in case you want to read
|
||||||
it in detail.
|
it in detail. Follow along and let's learn some Rust on the way!
|
||||||
|
|
||||||
[wasm]: https://webassembly.org/
|
[wasm]: https://webassembly.org/
|
||||||
[Xemincompiler]: https://github.com/Xe/minicompiler
|
[Xemincompiler]: https://github.com/Xe/minicompiler
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
---
|
---
|
||||||
title: Rust Crates that do What the Go Standard library Does
|
title: Rust Crates that do What the Go Standard library Does
|
||||||
date: 2020-09-27
|
date: 2020-09-27
|
||||||
tags:
|
series: rust
|
||||||
- rust
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# Rust Crates that do What the Go Standard library Does
|
# Rust Crates that do What the Go Standard library Does
|
||||||
|
|
Loading…
Reference in New Issue