RosettaCodeData/Task/Bitmap/Julia/bitmap-2.julia

11 lines
144 B
Plaintext

type Color
r::Uint8
g::Uint8
b::Uint8
end
type Image
pic::Array{Color,2}
end
Image(w::Int, h::Int) = Image(Array(Color, w, h))