JoshOrndorff / LearnRholangByExample

Teaches rholang to beginners and intermediate programmers through hands-on examples and experimentation.
67 stars 32 forks source link

Discuss pattern matching on basic types #11

Open JoshOrndorff opened 5 years ago

JoshOrndorff commented 5 years ago
for (@Int <- @"x") {
  Nil
}
|
@"x"!(5)|    // Matches
@"x"!("hi")  // Doesn't match