Dhritishman Sarmah
Dhritishman Sarmah
Hello @quzim This issue has been solved [here](https://github.com/jamiemcg/Remarkable/issues/160#issuecomment-378986185)
> decompose a striung into an array of bytes, aka chars You can get string to byte(u8) array and vice versa: ```v a := 'qwerty ⛔😊🤣😁✅🍕🍔🍟' b := a.bytes() c...
Issue remains in V 0.4.8 be26233 However this works: ```v fn func(i int) ?int { match i { 0 { return 5 } 1 { return none } else {...