array copy 例
# Neil Gershenfeld 2/14/15 # Matt Keeter 6/12/15 # Kei Yasuda 27/2/16
import fab
title('Array Copy')
input('shape', fab.types.Shape) input('n', int)
for i in range(n): name = 'copy' + str(i) print(name) output(name, shape)
import fab
title('Array Copy')
input('shape', fab.types.Shape) input('n', int)
for i in range(n): name = 'copy' + str(i) print(name) output(name, shape)