REBOL [ Title: "View A List of Data" File: %view-list.r Date: 1-Jun-2000 Purpose: { Example of how to display a simple block of data as fixed width columns in a window. Code is just one line. } Category: [view VID 1] ] names: [["John" 100] ["Joe" 200] ["Martin" 300]] view layout [list blue 320x200 [across text white 200 text white 100] data names]