Created
April 4, 2015 14:55
-
-
Save daynebatten/28884d54a3a9f09cfa4c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data lumber; | |
| input @1 length 3. @5 price 8.2; | |
| datalines; | |
| 72 2.50 | |
| 96 3.50 | |
| 120 5.00 | |
| run; | |
| data cuts; | |
| input @1 length 3. @5 number 3.; | |
| datalines; | |
| 12 24 | |
| 57 12 | |
| 8 2 | |
| 65 1 | |
| 23 5 | |
| 18 3 | |
| 62 4 | |
| run; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment