I hope you get very far in learning Squeak. I learned squeak a while ago, but I hope you enjoy programming in it as much as I did.
Also, (off-topic), but how did you come up with your username?
Offline
I'd like to join you. Squeak seems like it would help me learn OOP. Maybe eventually we could make a programming language like Scratch! Just so you know, you might need to teach me the basics.
Offline
G0D_M0D3 wrote:
I hope you get very far in learning Squeak. I learned squeak a while ago, but I hope you enjoy programming in it as much as I did.
Also, (off-topic), but how did you come up with your username?
I hope i learn have fun learning squeak I am already having fun
. me and my Dad are learning it together but I wanted to make this so other people can learn and I can learn it quicker.
____________________________________________________________________________________
About my user name I just randomly made it up P.S. I was little so I though I was spelling jerk lol XD
Offline
samtwheels wrote:
I'd like to join you. Squeak seems like it would help me learn OOP. Maybe eventually we could make a programming language like Scratch! Just so you know, you might need to teach me the basics.
ok
____________________________________________________________________________________
I am doing school right now but as soon as I have time I will teach you ok
Offline
samtwheels wrote:
I'd like to join you. Squeak seems like it would help me learn OOP. Maybe eventually we could make a programming language like Scratch! Just so you know, you might need to teach me the basics.
____________________________________________________________________________________
Lets get started
download the latest version of squeak because that is what we will be using to learn it.
download hear: http://www.squeak.org/
____________________________________________________________________________________now that you got squeak it is time to start with the basics
when you open squeak you should get this:
http://submit.jotform.com/uploads/pengu … creen_.jpg
when you click on the screen a menu should pop up like this: http://submit.jotform.com/uploads/pengu … d_menu.jpg <- that is the World menu
click on the pin on the top right corner of the World menu to keep the menu up. the top 4 things on the menu are the most used for programming.
the Browser is where you put code I do not know how to code in squeak yet
the Workspace is... <- I am not quite sure what it is used for.
the Transcript is... <- I am not quite sure what it is used for
the Test Runner is where you test your code I am not sure how to use it.
Offline
ok, I'll check out the links
Offline
samtwheels wrote:
ok, I'll check out the links
more squeak.
fun things to do with the Workspace.
Open the Workspace.
type this code in
(2 to: 20) select: [:each | each isPrime]
then if you have a windows computer alt click on the Workspace
about have way down there is some thing that says:
do it (d)
or look at this: http://submit.jotform.com/uploads/pengu … t_menu.jpg
and then click print it which is right under do it.
or another way to do it is press: ctrl and d . for print it press: ctrl and p .
to get the work space up quickly just press: ctrl and k . or another way is by pressing flaps... near the bottom. http://submit.jotform.com/uploads/pengu … u_Copy.jpg then click the top thing on the new menu (show shared tables (f) )
http://submit.jotform.com/uploads/pengu … _flaps.jpg
Last edited by jurk (2011-12-01 04:37:54)
Offline
More about squeak....................
_________________________________________________________________________________ Arrays (lists)
put this code in the Workspace.
Array with: 1 with: 2 with: 3 with: 4 with: 5 with: 6
you have made your first array
there are other ways to make an array such as
Array withAll: #(7 3 1 3)
or
Array newFrom: #(7 3 1 3)
.
Offline
I can't be in this anymore, sorry.
Offline