| Register | FAQ | Calendar | Search | Today's Posts | Mark Forums Read |
|
#1
| |||
| |||
| hi # # use nothingness and do-nothingness for good causes (free lambda encoding): # # free syntax elements: # translate 1. ( (lambda ( ) ) ) <=> (exit) # 2. ( (lambda (x) ) y) <=> (define x y) # 3. ( (lambda ( ) x) ) <=> (quote x) # # free data structure: # translate 1. ( (lambda ( ) ) ) <=> (list) or '() # 2. ( (lambda (x) ) y) <=> (cons x y) # 3. ( (lambda ( ) x) ) <=> (cdr x) # # free macro interface # translate 1. ( (lambda ( ) ) ) <=> (read) # 2. ( (lambda (x) ) y) <=> (define-macro x y) # 3. ( (lambda ( ) x) ) <=> (write x) # # use combinations for the entire language? # translate 1. ( (lambda ( ) ) ) <=> (exit) # 2. ( (lambda ( ) ) ( (lambda ( ) ) )) <=> (list) or '() # 3. etc # |
![]() |
| Thread Tools | |
| Display Modes | |
In an effort to better serve ads to our visitors, cookies are used on objectmix.com. For more information, check out our Privacy Policy.