Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
1
Task/Create-a-file/Smalltalk/create-a-file-1.st
Normal file
1
Task/Create-a-file/Smalltalk/create-a-file-1.st
Normal file
|
|
@ -0,0 +1 @@
|
|||
(FileDirectory on: 'c:\') newFileNamed: 'output.txt'; createDirectory: 'docs'.
|
||||
7
Task/Create-a-file/Smalltalk/create-a-file-2.st
Normal file
7
Task/Create-a-file/Smalltalk/create-a-file-2.st
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
ws := (File name: 'output.txt') writeStream.
|
||||
ws close.
|
||||
Directory create: 'docs'.
|
||||
|
||||
ws := (File name: '/output.txt') writeStream.
|
||||
ws close.
|
||||
Directory create: '/docs'.
|
||||
Loading…
Add table
Add a link
Reference in a new issue