tmtvl 3 days ago

I wonder why it's called 'Owl Lisp' instead of 'Owl Scheme'. Could make a funny parallel to Chicken Scheme.

2
KineticLensman 3 days ago

Perhaps it's some sort of Web Ontology Language (OWL) [0]. Or a reference to Winnie the Pooh, as in "Owl took Christopher Robin's notice from Rabbit and looked at it nervously. He could spell his own name WOL, and he could spell Tuesday so that you knew it wasn't Wednesday" [1]

[0] https://en.wikipedia.org/wiki/Web_Ontology_Language#Acronym

[1] https://en.wikiquote.org/wiki/A._A._Milne

binary132 3 days ago

I suppose because it is not a Scheme and is a Lisp. :)

Pet_Ant 3 days ago

It is a Scheme:

> Owl Lisp is a functional dialect of the Scheme programming language. It is mainly based on the applicative subset of the R7RS standard.

binary132 3 days ago

If it implements a subset of a scheme standard then it is not an implementation of a scheme standard. Is that not obvious?

kazinator 2 days ago

Something that implements a subset of Scheme is not a complete implementation of the Scheme specification, but to the extent that it is complete, mit is a Scheme dialect.

There are Scheme programs which the implementation handles, and programs developed with that incomplete implementation can be run by more complete implementations.

A Scheme programmer informed on the limits of the subset (what is not in it) implementation can jump in and start programming using what is in the subset.

A subset language can be useful to practitioners of the full language.

ThinLisp is an incomplete implementation of Common Lisp, but one which compiles to C that doesn't need garbage collection. You can develop ThinLisp programs as Common Lisp programs (with certain care). Then ThinLisp translates them to C. I think that (by default?) these translated programs don't need garbage collection.

Pet_Ant 3 days ago

I can't tell if you are joking or not.

If a platypus lays eggs, but it meets other criteria of being a mammal, it's still called a mammal. Owl may not be a full conforming Scheme implementation, but it seems to be member of the Scheme sub-family.

I'd say if you are a Lisp-1 (ie one namespace for variables and functions) and generally use the function names used by the Scheme standard then you are a Scheme (or Scheme-like-Lisp if you are very taxonomically retentive). However, if you are a Lisp-2 and use the function names of Common Lisp you're a Lisp.

Maybe if one were doing a deep dive on the history of Lisp and are into S-expressions vs M-expressions then it might be too loose, but I believe what is above is what most people would agree with in this context.

binary132 2 days ago

Lisp is a very general category (I would consider Clojure a Lisp, with some extras) while Scheme is not, it is defined by a specification. If some implementation does not implement the entire specification of a given protocol, it doesn't implement that protocol, right? Would a C++ compiler that doesn't accept "new" and "delete" be C++? No, it's some subset of C++, not C++. And some implementation of HTTP that doesn't have any verbs wouldn't be HTTP. An implementation of a Scheme specification that doesn't implement the full specification is not a Scheme. No?

A mammal is a creature that has X, Y, and Z characteristics. A creature having only X and Y characteristics is therefore not a mammal.

lispm 1 day ago

Scheme is a general category of probably 100+ implementations of various versions of the language based on various specs and standards. Small educational languages based on R4RS, R5RS. Then there is the more controversial R6RS and later a R7RS small and attempts to define a R7RS large. Then there are 100+ of language extensions in various states described in SRFIs. The there is an official language standard IEEE Scheme, which is not widely used (AFAIK). Then there are various subsets of the language Scheme used in education. For example in SICP there is a minimal Scheme subset used in the book. Scheme also spawned its own dialects (or maybe derived language), like Racket, which then has a new dialect Rhombus...

Lisp is either a family of language families (Lisps, Scheme, Logo, ML, MDL, JavaScript, Dylan, Racket, R, ...)

or

a more narrowly defined family of languages (often recognizable because they identify as Lisp in their name) and based on the core from Lisp 1: Lisp 1, Lisp 1.5, BBN Lisp, Interlisp, Maclisp, Franz Lisp, ZetaLisp, Le_Lisp, EuLisp, muLisp, Common Lisp (a standardized language), Emacs Lisp, Standard Lisp, ISLISP (a standardized language), ...

You'll find often in the Scheme literature Lisp described as a different, but related/derived, language (more symbolic, less functional, more procedural, procedural macros, less clean, less systematic, more dynamic, ...). Scheme is seen more functional, more lexical binding, less procedural, more minimal, one namespace, cleaner, ...).

kazinator 2 days ago

> Would a C++ compiler that doesn't accept "new" and "delete" be C++

Believe it or not, yes it would. It would not be a conforming implementation of any ISO C++ dialect, but it would be recongizable as a C++ dialect and mutually intelligible. Someone who knows C++ would understand programs written in that dialect, and could write new ones in it.

Something which is not a conforming ISO C++ implementation probably has good company; most production compilers are likely not fully conforming. Just not in gaping ways like new and delete being absent.

drweevil 2 days ago

Indeed. And even if it was a Scheme, it would be a Lisp. All Schemes are Lisps, not all Lisps are Schemes.

xdavidliu 3 days ago

it's right in the title of this thread, which comes from the project information of the repo