Path: utzoo!attcan!uunet!lll-winken!ames!mailrus!csd4.milw.wisc.edu!bbn!inmet!ishmael!inmet!rgh From: rgh@inmet Newsgroups: comp.lang.misc Subject: Re: Bondage and Discipline Language Message-ID: <124600002@inmet> Date: 11 Jan 89 14:04:00 GMT References: <8540@megaron.arizona.edu> Lines: 16 Nf-ID: #R:megaron.arizona.edu:-854000:inmet:124600002:000:520 Nf-From: inmet!rgh Jan 11 09:04:00 1989 >Are you using the phrase "dynamically typed" to refer to object-oriented >languages? I haven't run into this phrase before, and it's quite evocative. A variable is "dynamically typed" if its type can vary at runtime. In Icon, for instance: A := 1 A := "2" This statement sequence is legal; after the first statement the variable A has type integer, after the second, string. The builtin function type() can be used to determine the current type of a variable. Randy Hudson rgh@inmet.inmet.com uunet!inmet!rgh