LearnRholangByExample icon indicating copy to clipboard operation
LearnRholangByExample copied to clipboard

Discuss pattern matching on basic types

Open JoshOrndorff opened this issue 6 years ago • 0 comments

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

JoshOrndorff avatar Sep 26 '18 03:09 JoshOrndorff