blob: 759942cdb0dbb19410644b5260d659198c6dac55 [file] [log] [blame]
import 'package:gardening/src/util.dart';
main() {
testZip();
}
void testZip() {
print(zip([1, 2, 3], [4, 5, 6], (x, y) => x + y));
}