que version sera de smalltalk la extencion es .st

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

que version sera de smalltalk la extencion es .st

miguel agustin cardamone
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 [hidden email]
To unsubscribe from this group, send email to [hidden email]
 
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 [hidden email].
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.
Reply | Threaded
Open this post in threaded view
|

Re: que version sera de smalltalk la extencion es .st

Esteban A. Maringolo
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
<[hidden email]> 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 [hidden email]
> To unsubscribe from this group, send email to [hidden email]
>
> 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 [hidden email].
> 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 [hidden email]
To unsubscribe from this group, send email to [hidden email]

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 [hidden email].
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.