mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-28 12:28:21 +01:00
16 lines
254 B
Smalltalk
16 lines
254 B
Smalltalk
Class {
|
|
#name : #DiyaBaseObject,
|
|
#superclass : #Object,
|
|
#category : #'Diya-Core'
|
|
}
|
|
|
|
{ #category : #accessing }
|
|
DiyaBaseObject >> stderr [
|
|
VTermOutputDriver stderr
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
DiyaBaseObject >> stdout [
|
|
^ VTermOutputDriver stdout
|
|
]
|