Fichier quote.ex / 24 fevrier 2000 Welcome to DrScheme, version 101. Language: Graphical Full Scheme (MrEd). > (quote (1 2 3 4)) (1 2 3 4) > '(1 2 3 4) (1 2 3 4) > (1 2 3 4) procedure application: expected procedure, given: 1; arguments were: 2 3 4 > (define ceci-est-une-liste (list 1 2 3 4)) > ceci-est-une-liste (1 2 3 4) > (quote ceci-est-une-liste) ceci-est-une-liste > 'ceci-est-une-liste ceci-est-une-liste > (define une-autre-liste '(a b c d e)) > une-autre-liste (a b c d e) > 'une-autre-liste une-autre-liste > (define encore-une-autre (list a b c d e)) reference to undefined identifier: a > (define encore-une-autre (list 'a 'b 'c 'd 'e)) > encore-une-autre (a b c d e) > (+ 1 2) 3 > '(+ 1 2) (+ 1 2) > (define bizarre '(+ 1 2)) > (car bizarre) + > (car (cdr bizarre)) 1 > (car '(define x (+ 1 2))) define > ''(1 2 3) '(1 2 3) > (car ''(1 2 3)) quote