[Nickle] Nickle bug: import prettyprinting

Bart Massey nickle@nickle.org
Wed, 11 Sep 2002 01:36:39 -0700


Looks like a prettyprinter problem with import statements.
The code seems to work fine.

  > func(){ import String; return new(33); }
  func()
  {
    import x
    return new (33);
  }
	  
	Bart