You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just started reading your guide and I noticed that clicking the copy code button gives different text compared to what is actually shown. I have not tested every box, but in the first chapter alone at least 3 of the code boxes are "broken".
When i click the copy button I get this text:
#![allow(unused)]fnmain(){#[inline]fnfibonacci(n:u64) -> u64{match n {0 => 1,1 => 1,
n => fibonacci(n-1) + fibonacci(n-2),}}}
The text was updated successfully, but these errors were encountered:
Just started reading your guide and I noticed that clicking the copy code button gives different text compared to what is actually shown. I have not tested every box, but in the first chapter alone at least 3 of the code boxes are "broken".
When i click the copy button I get this text:
The text was updated successfully, but these errors were encountered: