473,698 Members | 2,149 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Dynamic languages

I've been reading an article published in E-Week entitled "Microsoft
Lures Open-Source Programmer", which contains a definition for dynamic
languages as follows:

"Dynamic programming languages enable programs to change their
structure as they run."

I wonder if this definition is correct.
Can we define dynamic languages this way?

http://www.eweek.com/article2/0,1759,1636906,00.asp
Jul 18 '05 #1
11 1868

"Neuruss" <lu****@gmx.net > wrote in message
news:27******** *************** **@posting.goog le.com...
I've been reading an article published in E-Week entitled "Microsoft
Lures Open-Source Programmer", which contains a definition for dynamic
languages as follows:

"Dynamic programming languages enable programs to change their
structure as they run."

I wonder if this definition is correct.
Can we define dynamic languages this way?

http://www.eweek.com/article2/0,1759,1636906,00.asp


I doubt that this is what they mean but a dynamic language is a language
that is still evolving (Python) as opposed to a dead language (COBOL).

They probably are referring to programs that can add and remove components
during runtime.

Tom
Jul 18 '05 #2
"Tom B." <sb******@comms peed.net> wrote in message news:<10******* ********@news.c ommspeed.net>.. .
I doubt that this is what they mean but a dynamic language is a language
that is still evolving (Python) as opposed to a dead language (COBOL).

They probably are referring to programs that can add and remove components
during runtime.


Dynamic refers to the typing of variables. In Python variables get a
type dynamically when assigned a value.
See also: http://www.artima.com/weblogs/viewpost.jsp?thread=4639
and several blog posting of Bruce Eckel on this subject:
http://www.mindview.net/WebLog/

Marcel.
Jul 18 '05 #3

"Marcel van den Dungen" <m_********@yah oo.com> wrote in message
news:98******** *************** **@posting.goog le.com...
"Tom B." <sb******@comms peed.net> wrote in message

news:<10******* ********@news.c ommspeed.net>.. .
I doubt that this is what they mean but a dynamic language is a language
that is still evolving (Python) as opposed to a dead language (COBOL).

They probably are referring to programs that can add and remove components during runtime.


Dynamic refers to the typing of variables. In Python variables get a
type dynamically when assigned a value.
See also: http://www.artima.com/weblogs/viewpost.jsp?thread=4639
and several blog posting of Bruce Eckel on this subject:
http://www.mindview.net/WebLog/

Marcel.


Those languages are called dynamically typed languages, this implies that
there is a statically typed language, which there is.
All languages are dynamic, this slang is bad computer science. There is no
such thing as a static computer language.

Tom
Jul 18 '05 #4
Tom B. wrote:
I doubt that this is what they mean but a dynamic language is a language
that is still evolving (Python) as opposed to a dead language (COBOL).

During my "education" at my school of unfortunate choice I had to learn
the script of the damned... sorry, COBOL. I learned that it has indeed
gone through some developments in the past years ie COBOL now is object
oriented COBOL.

It *should* be dead though, but companies don't want to develope any new
systems. So, they fund a programming program at some local college at
"suggest" that they include it so that they have a work force availible
to make changes to there system.

That of course doesn't mean that this certain company's COBOL programmer
lasts on average < 6 months. Which certainly is the case. Quite
frankly I don't know how they last so long.
Jul 18 '05 #5

"Reid Nichol" <rn*********@ya hoo.com> wrote in message
news:rc******** **********@news 1.mts.net...
Tom B. wrote:
I doubt that this is what they mean but a dynamic language is a language
that is still evolving (Python) as opposed to a dead language (COBOL).

During my "education" at my school of unfortunate choice I had to learn
the script of the damned... sorry, COBOL. I learned that it has indeed
gone through some developments in the past years ie COBOL now is object
oriented COBOL.

It *should* be dead though, but companies don't want to develope any new
systems. So, they fund a programming program at some local college at
"suggest" that they include it so that they have a work force availible
to make changes to there system.

That of course doesn't mean that this certain company's COBOL programmer
lasts on average < 6 months. Which certainly is the case. Quite
frankly I don't know how they last so long.


I figured that I wouldn't be able to find any truly dead computer
language. I met a technician at U of Minnesota Physics department who
collected PDP11's and programmed only in fourth. When I asked him why he
replied, 'If I don't do it who will'.

Tom
Jul 18 '05 #6
Marcel van den Dungen wrote:
"Tom B." <sb******@comms peed.net> wrote in message news:<10******* ********@news.c ommspeed.net>.. .
I doubt that this is what they mean but a dynamic language is a language
that is still evolving (Python) as opposed to a dead language (COBOL).

They probably are referring to programs that can add and remove components
during runtime.

Dynamic refers to the typing of variables. In Python variables get a
type dynamically when assigned a value.
See also: http://www.artima.com/weblogs/viewpost.jsp?thread=4639
and several blog posting of Bruce Eckel on this subject:
http://www.mindview.net/WebLog/


Personally, I think the definition can go a little further. In Python,
if you were so inclined, you could generate completely new functionality
through the use of exec and eval statements. This dynamic generation,
just not addition, of functionality at runtime I think is an important
aspect of dynamic languages.
Jul 18 '05 #7
Tom B. wrote:
"Marcel van den Dungen" <m_********@yah oo.com> wrote in message
news:98******** *************** **@posting.goog le.com...
"Tom B." <sb******@comms peed.net> wrote in message


news:<10******* ********@news.c ommspeed.net>.. .
I doubt that this is what they mean but a dynamic language is a language
that is still evolving (Python) as opposed to a dead language (COBOL).

They probably are referring to programs that can add and remove
components
during runtime.


Dynamic refers to the typing of variables. In Python variables get a
type dynamically when assigned a value.
See also: http://www.artima.com/weblogs/viewpost.jsp?thread=4639
and several blog posting of Bruce Eckel on this subject:
http://www.mindview.net/WebLog/

Marcel.

Those languages are called dynamically typed languages, this implies that
there is a statically typed language, which there is.
All languages are dynamic, this slang is bad computer science. There is no
such thing as a static computer language.


I respectively disagree. The difference between static and dynamic is an
important one. There are things I can do in Python that are synatically
impossible in C or C++ simply due to their absence of a native eval().
Jul 18 '05 #8
Quoth m_********@yaho o.com (Marcel van den Dungen):
....
| Dynamic refers to the typing of variables. In Python variables get a
| type dynamically when assigned a value.
| See also: http://www.artima.com/weblogs/viewpost.jsp?thread=4639
| and several blog posting of Bruce Eckel on this subject:
| http://www.mindview.net/WebLog/

I imagine they may actually have been looking at some version of
this: http://www.fact-index.com/d/dy/dynam..._language.html
which goes beyond static vs. dynamic typing in the sense they
ordinarily seem to be used. I'm not sure they really put their
finger on the main problem in the way of a Python compiler, but
whatever.

Donn Cave, do**@drizzle.co m
Jul 18 '05 #9

I was actually trying to make a point about semantics in that the terms
'dynamic' and 'static' are too generic. In computer science it is the custom
(but not always) to name a process as accurately as possible and use
acronyms. This way a Dynamically Typed Language becomes DTL and a
Dynamically Run Language becomes DRL, insuring that Python remains superior
in more way than one.

Tom
Jul 18 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1889
by: Roel Wuyts | last post by:
CALL FOR CONTRIBUTIONS International Workshop on Revival of Dynamic Languages http://pico.vub.ac.be/~wdmeuter/RDL04/index.html (at OOPSLA2004, Vancouver, British Columbia, Canada, October 24-28, 200) Organization committee: Roel Wuyts (primary contact - roel.wuyts@ulb.ac.be), Gilad Bracha, Wolfgang De Meuter, Stéphane Ducasse and Oscar Nierstrasz.
3
1312
by: Stephen Gennard | last post by:
Hello, I having a problem dynamically invoking a static method that takes a reference to a SByte*. If I do it directly it works just fine. Anyone any ideas why? I have include a example below... --
15
2060
by: Nak | last post by:
Hi there, Is it possible to load a web service dynamically? i.e. If the web service were to exist on a system with a non static IP address, an application could download a "locator" file that contained details of it's whereabouts, I have been looking at the "Discovery.DynamicDiscoveryDocument" class but I think think this is what I am looking for is it? Thanks in advance. Nick.
0
2068
by: Pascal Costanza | last post by:
Dynamic Languages Day @ Vrije Universiteit Brussel ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Monday, February 13, 2006, VUB Campus Etterbeek The VUB (Programming Technology Lab, System and Software Engineering Lab), ULB (deComp) and the Belgian Association for Dynamic Languages (BADL) are very pleased to invite you to a whole day of presentations about the programming languages Self, Smalltalk and Common Lisp by experts in...
0
1209
by: alexandre.bergel | last post by:
Dear colleges, You might want to consider Dyla'07 as a good venue to present your work and your favourite programming language. Regards, Alexandre **************************************************************************
28
2572
by: sturlamolden | last post by:
On Monday Microsoft announced a new runtime for dynamic languages, which they call "DLR". It sits on top of the conventional .NET runtime (CLR) and provides services for dynamically typed languages like Python or Lisp (thus the cross-posting). Apparently is is distributed under a BSD-like open-source license. I am curious to know how it performs in comparison to CPython and an efficient compiled Lisp like CMUCL. Speed is a major problem...
0
1677
by: Alexandre Bergel | last post by:
Dear colleague, Please, note that after the workshop, best papers will be selected, and a second deadline will then be set regarding preparation of the Electronic Communications of the EASST. Note that we submission deadline has been extended. The important dates: - May 27: deadline for the workshop submissions. Submissions should follow LNCS format (www.springer.com/lncs) and should be sorter than
5
2581
by: bearophileHUGS | last post by:
I often use Python to write small programs, in the range of 50-500 lines of code. For example to process some bioinformatics data, perform some data munging, to apply a randomized optimization algorithm to solve a certain messy problem, and many different things. For that I often use several general modules that I have written, like implementation of certain data structures, and small general "utility" functions/classes, plus of course...
0
8671
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8598
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9152
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9016
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8887
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
5858
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4613
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3037
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2321
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.