import 'dart:core'; void main() { //List of integers List intArr = [1,2,3,4,5]; print(intArr); //List of strings List strArr = ['hello', 'world']; ...
確定! 回上一頁