summaryrefslogtreecommitdiffhomepage
path: root/smalltalk.html.markdown
diff options
context:
space:
mode:
authorJigyasa Grover <grover.jigyasa1@gmail.com>2015-10-04 22:28:20 +0530
committerJigyasa Grover <grover.jigyasa1@gmail.com>2015-10-04 22:28:20 +0530
commit40489d4352ada61f3e788190bc07689825aedf14 (patch)
treed11185b0747c775fe7a458e202a31b7f60dcfe37 /smalltalk.html.markdown
parent67a2c46bca8362e8cc3c4a360f6a2065bfa7c0f1 (diff)
Update smalltalk.html.markdown
Diffstat (limited to 'smalltalk.html.markdown')
-rw-r--r--smalltalk.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/smalltalk.html.markdown b/smalltalk.html.markdown
index e9e5a56c..2c2ee3f7 100644
--- a/smalltalk.html.markdown
+++ b/smalltalk.html.markdown
@@ -37,9 +37,8 @@ Feedback highly appreciated! Reach me at [@jigyasa_grover](https://twitter.com/j
`"Period (.) is the statement seperator"`
-"************************************************************************
- * Transcript: *
- ************************************************************************"
+## Transcript:
+```
Transcript clear. "clear to transcript window"
Transcript show: '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' storeOn: Transcript. "append store string into the window"
Transcript endEntry. "flush the output buffer"
+```
"************************************************************************
* Assignment: *