MicroWorlds

MicroWorlds is a program that uses the Logo programming language, a dialect of Lisp programming language. It uses a turtle object which can be moved around, given commands, and eventually make shapes or even an animation.

It is part of a large set of dialects and implementations of Logo originating from the invention of Seymour Papert and aimed at triggering the development of abstract ideas by children through experimentation. As a tool for learning, Logo is flexible and provides immediate feedback; it is both accessible to young users and robust enough to create sophisticated projects. In original versions of Logo, Papert created a large 'turtle' that was programmed to move around the room by providing commands via the computer.

MicroWorlds was designed by LCSI, a Canadian company, and can be used with Windows and Mac computers.

Syntax

The following is an example of something written in Logo:

to go.crazy
fd 90
lt 90
rt 180
fd 4999              
end

In the example above, the user has gone into a part of the program called the procedure page, which allows for longer series of commands, and therefore more complex programs can be written. In this program, the cursor moves forward 90 units, turns left 90 degrees, right 180 degrees and then moves forward 4999 units.

Another example is:

to say.hi
announce [Hi!]
end

In this example, the user makes a dialog box appear, having the text of whatever is inside the brackets. In this case, the box would have "Hi!" written on it.

Commands can be written in one of two ways: using the procedures page or the command module. The command module allows for instructions to be executed immediately, whereas the procedures page holds instructions that are able to be referenced at any time (using the name written after the word "to" at the beginning of a procedure).

Vocabulary

Logo is based on real words in its 'language' so that they are easy to remember. An example of this is the 'forward' command. 'Forward' can be used in a program such as this:

forward 50

This simple line indicates that the turtle referred to before will move 50 units of computer screen in the direction it is pointed. The unit of measurement for 'forward' is one pixel on the screen. 'Forward' can also be abbreviated as the command 'fd', so therefore can be used like this:

fd 50

Other important navigation commands include:

lt :x  
turns the turtle left :x number of degrees
rt :x  
turns the turtle right :x number of degrees
setpos [x y]  
sets the position of the turtle in the coordinates of the screen, x being on the x axis, y on the y axis
pd  
sets the turtle's "pen" down, so that wherever it moves afterwards, it draws a line on the screen from where it started to where it ended up
pu  
sets the turtle's "pen" up, so that it does not draw a line anymore
setsh :x  
changes the picture the turtle appears as to be a picture that is either drawn in Micro Worlds itself or imported into the program. :x refers to the shape's number

This is only a brief example of the hundreds of commands in Micro Worlds.

Versions

MicroWorlds EX is a powerful app that introduces coding to students in upper primary school and middle school. MicroWorlds has the ability to execute multiple tasks independently, also called parallel processing. Several processes can be launched independently which is very helpful when creating multiple character animations and simulations. Extra features in MicroWorlds, for example a text editor, shape centre, melody centre and the ability to import pictures all work with the Logo aspects to create multimedia projects, video games and simulations.

LCSI also provides MicroWorlds JR, an iconic version of Logo that allows younger children, who are non-readers, to learn to code.

Tom Walsh has written a school curriculum for MicroWorlds EX.[1]

A self-study guide for use at home was written by Camille McCue.[2]

MicroWorlds EX is available in many languages such as French, Spanish, Russian, Chinese, Portuguese, Italian, Armenian and Greek.

MicroWorlds is used as the main component of the curriculum used by OpenWorld Learning, an educational non-profit based in Denver, Colorado,[3] that as of 2016 operated 11 elementary sites and three middle school sites in the Denver area. The organization provides a free after-school program to students interested in STEM (Science, Technology, Engineering and Math) education.

Microworlds EX can be used to make a variety of apps and interactive games.

References

  • John Gough, "MicroWorlds as a Learning Environment: Years 5 - 7: Tools Versus Thinking", Symp. on Contemporary Approaches to Research in Mathematics, Science, Healthand Environmental Education, Deakin University December 2–3, 1996. (a pdf file)
  • Logo Computer Systems Inc., 1999, Logo Philosophy and Implementation. LCSI. What is Logo? And Who Needs It?
  • Papert, Seymour (1980). Mindstorms.New York:Basic Books.
  • Papert, Seymour (1993)."The Children's Machine: Rethinking School in the Age of the Computer. New York: Basic Books.
  1. Walsh, Thomas. "Teaching Contexts: ELL Project in Tanzania, Survey Research Curriculum, Computer Science Programming with Logo, and Resources for Gifted/Regular Education". sites.google.com. Retrieved 2018-10-10.
  2. Getting Started with Coding
  3. "OpenWorld Learning – Creating Possibilities Through Technology". OpenWorld Learning. Retrieved 2018-10-10.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.