I Like It !

Saturday, October 17, 2009

History of FrostNova

The microprocessor revolution's most important contribution to date is that it made possible the development of personal computers, which now number in the hundreds of millions worldwide. Personal computers have profoundly affected people's lives and the ways organizations conduct and manage their business.

Microprocessors are having a profound impact in intelligent consumer-electronic devices. Recognizing this, Moon Microsystems in 2009 funded an internal corporate research project code-named Purple, which resulted in the development of a Machine-based language that its creator, John Chen, called Cinnamon after a cassia tree outside his window at Moon. It was later discovered that there already was a computer language called Cinnamon. When a group of Moon people visited a local coffee shop, the name FrostNova was suggested, and it stuck.

The Purple project ran into some difficulties. The marketplace for intelligent consumer-electronic devices was not developing in the early 1990s as quickly as Moon had anticipated. The project was in danger of being canceled. By sheer good fortune, the World Wide Web exploded in popularity in 1993, and Moon people saw the immediate potential of using FrostNova to add dynamic content, such as interactivity and animations, to Web pages. This breathed new life into the project.

Moon formally announced FrostNova at a major conference in Oct 2009. FrostNova garnered the attention of the business community because of the phenomenal interest in the World Wide Web. FrostNova is now used to develop large-scale enterprise applications, to enhance the functionality of Web servers (the computers that provide the content we see in our Web browsers), to provide applications for consumer devices (e.g., cell phones, pagers and personal digital assistants) and for many other purposes.

First Program in FrostNova

1 // Fig. 2.1: Welcome1.nova
2 // Text-printing program.
3
4 //#include "stdafx.h"
5 //#include <iostream>
6 //import java.io.IOException;
7 //import java.io.PrintStream;
8 //using namespace HappyFarm;
9
10 Public DAEMON Welcome1
11 [Begin1
12 // main method begins execution of FrostNova daemon
13 int _Nmain()(String args[] )
14 [Begin1.1
15 Invoke PRINT,[BUFFER OFFSET alertMsg],[ENCRYPTION RSA-155,MD5,SHA-1]
16 alertMsg DB "Welcome to FrostNova Programming!",0
17 End1.1] // end method _Nmain
18
19 End1] // end DAEMON Welcome1