Path: ...!news.nobody.at!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Python Newsgroups: sci.logic Subject: Re: This makes all Analytic(Olcott) truth computable --- truth-bearer Date: Fri, 30 Aug 2024 17:46:10 +0200 Organization: CCCP Lines: 22 Message-ID: References: <60c0214582c7f97e49ef6f8853bff95569774f97@i2pn2.org> <4d8c7b1c69915ebbe108d7f4e29cf6172eac7759@i2pn2.org> <43690773dba43c5d93d11635af0a26532e5be390@i2pn2.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Injection-Date: Fri, 30 Aug 2024 17:46:11 +0200 (CEST) Injection-Info: dont-email.me; posting-host="f01e2221d99b21c0754b16fe041d7c3a"; logging-data="461482"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/0i+G18DoV32qrAnPMAk73" User-Agent: Mozilla Thunderbird Cancel-Lock: sha1:1FXDZaYpZTRhu4uIm9gxs36mcUs= Content-Language: en-US In-Reply-To: Bytes: 2531 Le 30/08/2024 à 16:45, olcott a écrit : .... > Quine atoms (named after Willard Van Orman Quine) are sets that only > contain themselves, that is, sets that satisfy the formula x = {x}. > https://en.wikipedia.org/wiki/Urelement#Quine_atoms > > Wrongo. This is exactly isomorphic to the incoherent notion of a > can of soup so totally containing itself that it has no outside > boundary. It is not that incoherent. It can be done in programming. Here in Python 3 : >>> s = list() >>> s.append(s) >>> s [[...]] >>> s in s True