#ThreeGoodThings #3GoodThings
+ #AdventOfCode mit #RustC angefangen
+ Hörbuch
+ In der Vorlesung gewesen
Latest posts tagged with #RustC on Bluesky
#ThreeGoodThings #3GoodThings
+ #AdventOfCode mit #RustC angefangen
+ Hörbuch
+ In der Vorlesung gewesen
A snippet of code from Neovide showing the recursion limit set to 2 to the 14th power (or 16,384).
yeah I'm breaking #rustc so what?
me: “I’ll just make a quick change and rerun it.”
rustc: “A quick what now?”
[10 minutes later]
me: sipping coffee, watching rustc like it’s a sourdough starter...
#rustlang #programminghumor #devmemes #rustacean #compiletime #softwareengineering #rustdev #developerlife #techhumor #rustc
[Перевод] «Почему компилятор Rust такой медленный?» Я потратил месяц на создание веб-сайта в Docker и теперь гото...
#docker #профилирование #трассировка #компиляция #rustc
Origin | Interest | Match
let a = 1; let b = 2; let (a, b) = (b, a); println!("{}, {}",a,b); //output: 2, 1
🔄 You can swap two values with creating a temp variable!
```rust
let a = 1;
let b = 2;
let (a, b) = (b, a);
println!("{}, {}",a,b);
//output: 2, 1
```
#Rust30by30 #Rustc #Rustlang #Day1