Skip to content

Commit

Permalink
Fixes the link
Browse files Browse the repository at this point in the history
  • Loading branch information
olahfemi committed Nov 23, 2024
1 parent 35fe3a6 commit 3767cb2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ mod system;

use crate::support::Dispatch;

let a = 0;
let b = 1;
let c = 2;
if c>= 1 + 3 {}
cont a = 0;
const b = 1;
const c = 2;
if c > 3 {}

// These are the concrete types we will use in our simple state machine.
// Modules are configured for these types directly, and they satisfy all of our
Expand Down

0 comments on commit 3767cb2

Please sign in to comment.