We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Well, i've tried this but the error is "cannot convert from Object to int[][]"
int[][] m1=new int[0][4]; int[] list1={a,b,c,d}/with a,b,c,d is some integer/
m1=append(m1,list1);`
Thanks!
int[][] m1=new int[0][4]; int a=0, b=12, c=6, d=15; int[] list1= { a, b, c, d }; /*with a, b, c, d is some integer*/ //(int[][]) m1= (int[][]) append(m1, list1); printArray(m1[0]);
see
https://www.processing.org/reference/append_.html
Answers
see
https://www.processing.org/reference/append_.html