| Paste number 94615: | untitled |
| Pasted by: | djanatyn |
| When: | 2 years, 3 months ago |
| Share: | Tweet this! | http://paste.lisp.org/+2107 |
| Channel: | #scheme |
| Paste contents: |
(if (< a 11)
(define a (+ a 1))
(display a)
)Annotations for this paste:
| Annotation number 1: | untitled |
| Pasted by: | djanatyn |
| When: | 2 years, 3 months ago |
| Share: | Tweet this! | http://paste.lisp.org/+2107/1 |
| Paste contents: |
(define a 10)
(if (< a 11)
(+ a 1)
| Annotation number 2: | try again! |
| Pasted by: | djanatyn |
| When: | 2 years, 3 months ago |
| Share: | Tweet this! | http://paste.lisp.org/+2107/2 |
| Paste contents: |
(define a 10)
(if (< a 11)
(+ a 1)
(display a)
)