This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
cs330_f2016:racketbasics [2016/08/10 16:44] morse [Preparation:] |
cs330_f2016:racketbasics [2021/06/30 23:42] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | |||
| ====Objective:==== | ====Objective:==== | ||
| Learn the basics of the Racket Language and functional programming in general. | Learn the basics of the Racket Language and functional programming in general. | ||
| - | |||
| - | |||
| ---- | ---- | ||
| Line 11: | Line 10: | ||
| Download the latest version of DrRacket from [[http://racket-lang.org]] and install it on your computer. Versions are available for Windows, Mac OS X, and Linux. | Download the latest version of DrRacket from [[http://racket-lang.org]] and install it on your computer. Versions are available for Windows, Mac OS X, and Linux. | ||
| + | Please also take a look at [[cs330_f2016:turnin|how to turn in your assignments]]. | ||
| + | |||
| + | ---- | ||
| ====Deliverables:==== | ====Deliverables:==== | ||
| Line 24: | Line 26: | ||
| (define (sum-coins pennies nickels dimes quarters) ...) | (define (sum-coins pennies nickels dimes quarters) ...) | ||
| </code> | </code> | ||
| - | where ''pennies'', ''nickels'', ''dimes'', and ''quarters'' are all non-negative numbers and the value returned is the total value of the coins. | + | where ''pennies'', ''nickels'', ''dimes'', and ''quarters'' are all non-negative numbers and the value returned is the total value of the coins in cents. |
| === degrees-to-radians === | === degrees-to-radians === | ||
| Line 44: | Line 46: | ||
| where ''angle'' is a number representing either degrees or radians, type is either '''degrees'' or '''radians'' (a symbol) indicating how ''angle'' is represented, and the value returned is the sin of ''angle''. | where ''angle'' is a number representing either degrees or radians, type is either '''degrees'' or '''radians'' (a symbol) indicating how ''angle'' is represented, and the value returned is the sin of ''angle''. | ||
| - | ---- | + | Hint: use ''symbol=?'' to test for symbol equality: ''(symbol=? x 'degrees)''. |
| + | ---- | ||
| ====Notes:==== | ====Notes:==== | ||
| Line 57: | Line 60: | ||
| Try clicking on the Step button to walk through your code and watch the equivalent sequence of substitutions that are performed. | Try clicking on the Step button to walk through your code and watch the equivalent sequence of substitutions that are performed. | ||
| - | Use ''check-expect'' and ''check-within'' to write your own unit tests for your code. | + | |