Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of bibbleWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 02:33, 10 October 2024 Iwiseman talk contribs created page Rust macros (Created page with "=Macros= I did macros using YouTube and the course. The first example is the course, the second is YouTube. ==Greatest Common Denominator Macro== Here is the simple example. <syntaxhighlight lang="rs"> macro_rules! gcd { ($a: expr, $b: expr) => { { let mut a = $a; let mut b = $b; while b != 0 { let t = b; b = a % b; a = t; } a } }; } mai...")