TweetFollow Us on Twitter

Apr 91 Letters
Volume Number:7
Issue Number:4
Column Tag:Letters

Overseas Letters and Required OOP

By Kirk Chase, Editor

December 1990 comments

Jon Kleiser

Oslo, Norway

Some comments/answers to articles/letters in the December issue.

• On page 76, Modula-2 Mods / Discrete-Event Simulations, Allen Stenger says:

“But the language of choice for simulation work is an old one, SIMULA 67.

...

As far as I know, none of these specialized simulation languages is available on the Macintosh.”

My comment:

A SIMULA compiler for the Macintosh is available from

Lund Software House

P.O. Box 7056

S-220 07 LUND

Sweden

UUCP address: ...MCVAX!ENEA!DNA!BORIS

Telephone: +46-46-108044 Telefax: +46-46-131021

It requires MPW. The price (if any!) is unknown.

One of the creators of Simula, professor Kristen Nygaard at the University of Oslo, has now created a new programming language called BETA. As far as I know, BETA covers most or all of SIMULA, and much more. BETA is also available for the Macintosh, partly thanks to Apple, Cupertino.

An extensive article about BETA appeared in the Salamanca EUC Conference Proceedings (1990). You may get more info about BETA from

Mjølner Informatics ApS

(Attn.: J. Lindskov Knudsen, O. Lehrmann Madsen)

Science Park Aarhus

Gustav Wieds Vej 10

DK-8000 AARHUS C

Denmark

E-mail addresses: mjolner@mjolner.dk

jlknudsen@daimi.dk

olmadsen@daimi.dk

Telephone: +45-86-202000

In the future we may see regular articles about SIMULA or BETA in MacTutor. (Who knows?)

• Page 92, Mousehole Report, From: Derek, Re: BBS Writing ...

My comment:

I had much the same needs as Derek, and I decided to write my own BBS software. Since I am very fond of HyperCard, I used that, and I am quite pleased with the results. My BBS has been in use at a test site for about four months. However, it’s all Norwegian. I may translate it into English one day, but I can’t say when.

Simula-67 For The Mac

Erik Svensson

FOA 22 (National Defense Research Est.)

Stockholm, Sweden

In the December issue of MacTutor, there was an article by Mr. Allen Stenger. In the article, he mentions Simula-67 and professes to no Simula-67 available for MPW. It’s sold (and Made) by Lund Software House AB (full address at the end). The compiler confirms to the SIMULA standard and has no restrictions. The data segment is restricted to 32K, and this places some restrictions on the total size of the program. The data segment is used for:

1: local variables of the run-time system

2: for templates (a description of a block used by the RTS)

3: for strings and floating-point numbers used in the program

This means that a SIMULA program can’t be bigger than between 4000-10000 lines of source.

Also the generated code for a block may not be bigger than 32K, but in practice this is not a problem. Note the above applies to version 4.07. There might well have been changes to newer versions.

I might add that FOA, a long time user of Simula for both event-driven simulations and general programming is converting (or has converted) to Ada, mostly due to industry demands.

The address to Lund Software House is

Lund Software House AB

Box 7056

S-200 07 Lund

Sweden

Smalltalk Benchmarks

Jean-Luc Schmitt

Héry, France

As the OOP stream is going stronger in the Mac world, MacTutor forgets Smalltalk and specially the implementation from DIGITALK. I have tried the benchmarks you ran for Prograph. For the accuracy test, it took 0.733 seconds, and for the sieve test, 16.866 seconds on an SE/30 (without any add-on). As long as the tests are meaningful, the results are good if you consider that Smalltalk/V is not native 680X0 code but uses a virtual machine and byte-code.

The following is the Smalltalk/V code:

“accuracy test” | x s start stop|
start := MTrap TickCount.
x := 0.0. s:= 0.0.
1000 timesRepeat: [ s:= s + (x * x). x := x + 0.00123].
stop := MTrap TickCount. ^(stop - start)/60

“Sieve test”
| flags k count k prime start stop|
start := MTrap TickCount.
10 times Repeat:
[flags := Array new : 8191. count := 0.
1 to:8191 do: [:i|flags at:i put: 1].
1 to:8191 do: [:i|(flags at: i) = 0
 ifFlase: [prime := i + i + 3. k := i + prime.
 [k <= 8190]
 whileTrue:[flags at: k put: 0. k:= k + prime].
count := count + 1]]].
stop := MTrap TickCount. ^(stop - start)/60

Benchmark Challenge or Brain Challenge?

Conrad Weyns

Oslo, Norway

About “Benchmark Challenge. Walt Davis, Steve Bayer” in the September issue.

Looking at their Table1 and Graph1, I ponder upon two questions, both to do with the results of the “Case” examples:

- Does the processing time get close to zero if the control variable “b” were to increase further?? (Hurry and buy Symantec’s Pascal in that “case”)

- Why is the processing time in the Case-examples constant?

Please publish a disassembly of the produced code. It should be most enlightening!

And let me congratulate: A timing of 20 seconds for either 1x1million or 15x1million useless Pascal Case-tests on a MacPlus is about 3 times better than I can manage with assembly .

Here is a list of the Mach2 Forth Case-equivalents. (I won’t divulge what the If-Else-Then equivalent used: too much parameter fetching, pushing and popping). Run on a MacPlus, in Secs & Ticks, with 60 Ticks = 1 sec.

b Forth-Case my-poor-Assembler-Case

1 18-56 9-43

2 23-57 13-19

3 29-26 16-47

4 34-22 20-21

5 39-17 23-53

14 85-26 55-27

15 90-13 59-08

>15 88-15 59-06


Included in both the Forth and the Assembler “Case” is the time used by the MACH2 Forth DO-LOOP construct which was a constant of 3 secs and 44 ticks.

My Assembler is lousy, or my MacPlus is living a life of its own.

Still, I took up the challenge, didn’t I ? With many regards to MacTutor, I would not miss it for the world.

On Location Helps Developers

David Kramer

Montréal, Canada

I recently purchased On Location, and I’ve found an interesting way that programmers can use this indexing utility. I have about 4Mb of sample source code scattered through thousands of files (TML Source Code, Apple DTS code, etc.). I’ve used On Location to fully index these files. Now, when I need an example of how to use any function, I just call up On Location and search for all of these references to this function from my source code collection. In addition, I can view the text in each sample source code file and cut & paste into my own program. It’s fast, and it’s a great way of learning.

Required OOP

Jeffrey Evans

Kirkland, WA

Several times I’ve started to write about this, but have always preferred to spend my time on other things. Seeing yet another discussion of Apple’s supposed intent to require object programming has finally gotten me into the word processor.

Many times in the last year I’ve heard this talk: programmers will eventually be required to use object programming to work on the Mac. People have gone on and on about it.

The whole thing started with an article in Apple Direct in which a certain Apple guru made the announcement that future operating systems would require OOP. He was very explicit, even saying, “there-we can’t be any more clear about it,” or words to that effect, and added that those who don’t learn OOP now will have to learn it later. At the time I discussed this with a friend, and, dumb guys that we may be, neither of us could figure out a way that such a trick could be accomplished without leaving behind ALL existing Macintosh software, something no sane company would consider doing. So I wrote the author of said article and, guess what-he replied that he didn’t really mean it.

What he really meant was that he thinks object programming is neat and that, in the future, those who use it will be more successful, so that everyone else will “have to” use it in order to compete. In a manner of speaking.

Clearly, this is not the same thing as saying that “Apple will require OOP in future operating systems.” In fact, it’s the same sort of thing that could be said by any committed fan of any programming environment. But no correction has ever been issued, and editor and readers everywhere apparently have swallowed this dubious-sounding proposition without a trace of doubt. It ain’t true.

February Correction

A line, at the bottom of page 22 in the February 1991 issue was inadvertently left off. The line reads as follows:

"The cursorEvt event informs the EA that the cursor is inside"

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Six fantastic ways to spend National Vid...
As if anyone needed an excuse to play games today, I am about to give you one: it is National Video Games Day. A day for us to play games, like we no doubt do every day. Let’s not look a gift horse in the mouth. Instead, feast your eyes on this... | Read more »
Old School RuneScape players turn out in...
The sheer leap in technological advancements in our lifetime has been mind-blowing. We went from Commodore 64s to VR glasses in what feels like a heartbeat, but more importantly, the internet. It can be a dark mess, but it also brought hundreds of... | Read more »
Today's Best Mobile Game Discounts...
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links below... | Read more »
Nintendo and The Pokémon Company's...
Unless you have been living under a rock, you know that Nintendo has been locked in an epic battle with Pocketpair, creator of the obvious Pokémon rip-off Palworld. Nintendo often resorts to legal retaliation at the drop of a hat, but it seems this... | Read more »
Apple exclusive mobile games don’t make...
If you are a gamer on phones, no doubt you have been as distressed as I am on one huge sticking point: exclusivity. For years, Xbox and PlayStation have done battle, and before this was the Sega Genesis and the Nintendo NES. On console, it makes... | Read more »
Regionally exclusive events make no sens...
Last week, over on our sister site AppSpy, I babbled excitedly about the Pokémon GO Safari Days event. You can get nine Eevees with an explorer hat per day. Or, can you? Specifically, you, reader. Do you have the time or funds to possibly fly for... | Read more »
As Jon Bellamy defends his choice to can...
Back in March, Jagex announced the appointment of a new CEO, Jon Bellamy. Mr Bellamy then decided to almost immediately paint a huge target on his back by cancelling the Runescapes Pride event. This led to widespread condemnation about his perceived... | Read more »
Marvel Contest of Champions adds two mor...
When I saw the latest two Marvel Contest of Champions characters, I scoffed. Mr Knight and Silver Samurai, thought I, they are running out of good choices. Then I realised no, I was being far too cynical. This is one of the things that games do best... | Read more »
Grass is green, and water is wet: Pokémo...
It must be a day that ends in Y, because Pokémon Trading Card Game Pocket has kicked off its Zoroark Drop Event. Here you can get a promo version of another card, and look forward to the next Wonder Pick Event and the next Mass Outbreak that will be... | Read more »
Enter the Gungeon review
It took me a minute to get around to reviewing this game for a couple of very good reasons. The first is that Enter the Gungeon's style of roguelike bullet-hell action is teetering on the edge of being straight-up malicious, which made getting... | Read more »

Price Scanner via MacPrices.net

Take $150 off every Apple 11-inch M3 iPad Air
Amazon is offering a $150 discount on 11-inch M3 WiFi iPad Airs right now. Shipping is free: – 11″ 128GB M3 WiFi iPad Air: $449, $150 off – 11″ 256GB M3 WiFi iPad Air: $549, $150 off – 11″ 512GB M3... Read more
Apple iPad minis back on sale for $100 off MS...
Amazon is offering $100 discounts (up to 20% off) on Apple’s newest 2024 WiFi iPad minis, each with free shipping. These are the lowest prices available for new minis among the Apple retailers we... Read more
Apple’s 16-inch M4 Max MacBook Pros are on sa...
Amazon has 16-inch M4 Max MacBook Pros (Silver and Black colors) on sale for up to $410 off Apple’s MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather than a third-party... Read more
Red Pocket Mobile is offering a $150 rebate o...
Red Pocket Mobile has new Apple iPhone 17’s on sale for $150 off MSRP when you switch and open up a new line of service. Red Pocket Mobile is a nationwide MVNO using all the major wireless carrier... Read more
Switch to Verizon, and get any iPhone 16 for...
With yesterday’s introduction of the new iPhone 17 models, Verizon responded by running “on us” promos across much of the iPhone 16 lineup: iPhone 16 and 16 Plus show as $0/mo for 36 months with bill... Read more
Here is a summary of the new features in Appl...
Apple’s September 2025 event introduced major updates across its most popular product lines, focusing on health, performance, and design breakthroughs. The AirPods Pro 3 now feature best-in-class... Read more
Apple’s Smartphone Lineup Could Use A Touch o...
COMMENTARY – Whatever happened to the old adage, “less is more”? Apple’s smartphone lineup. — which is due for its annual refresh either this month or next (possibly at an Apple Event on September 9... Read more
Take $50 off every 11th-generation A16 WiFi i...
Amazon has Apple’s 11th-generation A16 WiFi iPads in stock on sale for $50 off MSRP right now. Shipping is free: – 11″ 11th-generation 128GB WiFi iPads: $299 $50 off MSRP – 11″ 11th-generation 256GB... Read more
Sunday Sale: 14-inch M4 MacBook Pros for up t...
Don’t pay full price! Amazon has Apple’s 14-inch M4 MacBook Pros (Silver and Black colors) on sale for up to $220 off MSRP right now. Shipping is free. Be sure to select Amazon as the seller, rather... Read more
Mac mini with M4 Pro CPU back on sale for $12...
B&H Photo has Apple’s Mac mini with the M4 Pro CPU back on sale for $1259, $140 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – Mac mini M4 Pro CPU (24GB/512GB): $1259, $... Read more

Jobs Board

All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.