;; The first three lines of this file were inserted by DrRacket. They record metadata ;; about the language level of this file in a form that our tools can easily process. #reader(lib "htdp-intermediate-lambda-reader.ss" "lang")((modname lect40-dist) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f ()))) #| fornow x be 5 in fornow y be 3 in (: fornow x be y in (: x +++ y :) stopit +++ x :) stopit stopit |# (let {[x 5]} (let {[y 3]} (+ (let {[x y]} (+ x y)) x))) class Foo { int x; void foo( double x ) { setBlarg(x+3); } setBlarg(x+9); }