Lo más probable es que venga de Pharo (www.pharo.org), ya que el formato de ese contenido es Tonel (https://github.com/pharo-vcs/tonel).
Saludos, Esteban A. Maringolo Esteban A. Maringolo On Tue, Jun 25, 2019 at 11:58 AM miguel agustin cardamone <[email protected]> wrote: > > Class { > #name : #Content, > #superclass : #Object, > #instVars : [ > 'text', > 'user', > 'creation', > 'reactions' > ], > #category : #'Practica1-Core' > } > > { #category : #accessing } > Content >> creation [ > ^ creation > ] > > { #category : #accessing } > Content >> creation: anObject [ > creation := anObject > ] > > { #category : #accessing } > Content >> reactions [ > ^ reactions > ] > > { #category : #accessing } > Content >> reactions: anObject [ > reactions := anObject > ] > > { #category : #accessing } > Content >> text [ > ^ text > ] > > { #category : #accessing } > Content >> text: anObject [ > text := anObject > ] > > { #category : #accessing } > Content >> user [ > ^user > ] > > { #category : #accessing } > Content >> user: anObject [ > user := anObject > ] > > ????? > > -- > -- > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > > http://www.clubSmalltalk.org > --- > Has recibido este mensaje porque estás suscrito al grupo "ClubSmalltalk" de > Grupos de Google. > Para cancelar la suscripción a este grupo y dejar de recibir sus mensajes, > envía un correo electrónico a [email protected]. > Para ver esta conversación en el sitio web, visita > https://groups.google.com/d/msgid/clubsmalltalk/1a53d014-48c3-4b82-8808-04c069918ceb%40googlegroups.com. > Para acceder a más opciones, visita https://groups.google.com/d/optout. -- -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] http://www.clubSmalltalk.org --- Has recibido este mensaje porque estás suscrito al grupo "ClubSmalltalk" de Grupos de Google. Para cancelar la suscripción a este grupo y dejar de recibir sus mensajes, envía un correo electrónico a [email protected]. Para ver este debate en la Web, visita https://groups.google.com/d/msgid/clubsmalltalk/CAJMgPCLAt%2BPNuwP-uTEzayOwhsc%2BTFxcBvwcYshCpa%3D1UpJTxw%40mail.gmail.com. Para obtener más opciones, visita https://groups.google.com/d/optout.
