mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 15:24:09 +03:00
Update smalltalk.html.markdown
This commit is contained in:
parent
67a2c46bca
commit
40489d4352
@ -37,9 +37,8 @@ Feedback highly appreciated! Reach me at [@jigyasa_grover](https://twitter.com/j
|
|||||||
|
|
||||||
`"Period (.) is the statement seperator"`
|
`"Period (.) is the statement seperator"`
|
||||||
|
|
||||||
"************************************************************************
|
## Transcript:
|
||||||
* Transcript: *
|
```
|
||||||
************************************************************************"
|
|
||||||
Transcript clear. "clear to transcript window"
|
Transcript clear. "clear to transcript window"
|
||||||
Transcript show: 'Hello World'. "output string in transcript window"
|
Transcript show: 'Hello World'. "output string in transcript window"
|
||||||
Transcript nextPutAll: 'Hello World'. "output string in transcript window"
|
Transcript nextPutAll: 'Hello World'. "output string in transcript window"
|
||||||
@ -50,6 +49,7 @@ Transcript cr. "carriage return / l
|
|||||||
'Hello' printOn: Transcript. "append print string into the window"
|
'Hello' printOn: Transcript. "append print string into the window"
|
||||||
'Hello' storeOn: Transcript. "append store string into the window"
|
'Hello' storeOn: Transcript. "append store string into the window"
|
||||||
Transcript endEntry. "flush the output buffer"
|
Transcript endEntry. "flush the output buffer"
|
||||||
|
```
|
||||||
|
|
||||||
"************************************************************************
|
"************************************************************************
|
||||||
* Assignment: *
|
* Assignment: *
|
||||||
|
Loading…
Reference in New Issue
Block a user