1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
original.name="LengthOf_Valid_5" ====== >>> main.whiley type list is int[] function len(list l) -> int: return |l| public export method test() : int[] l = [1, 2] assume len(l) == 2 int[] s = "Hello World" assume len(s) == 11 ---