count_method.gravity 197 B

12345678910
  1. #unittest {
  2. name: "count() method for string";
  3. error: NONE;
  4. result: true;
  5. };
  6. func main () {
  7. var s = "Hello World"
  8. return s.count("l") == 3 and s.count("World") == 1 and s.count("xyz") == 0
  9. }