import std/unicode
    
    let str = “你好/hi”
    
    for c in str.runes():
      case c:
        of '/':  # compile error here, since c is type of distinct RuneImpl
         echo " '/' found"
         break
    
    
    Run

Reply via email to