this repo has no description
at master 23 lines 356 B view raw
1-- in.cue -- 2import "math" 3 4// should be true 5t1: math.MultipleOf(99*99, 99) 6t2: math.MultipleOf(100010, 10) 7t3: math.MultipleOf(22, 2) 8t4: math.MultipleOf(11, 1) 9 10// should be false 11f1: math.MultipleOf(5555555, 2) 12f2: math.MultipleOf(100.01, 4) 13 14-- out/math -- 15// should be true 16t1: true 17t2: true 18t3: true 19t4: true 20 21// should be false 22f1: false 23f2: false