Recommended Answers

All 6 Replies

Nice find!

Alas, IronPython and Jython are missing.

Well, here is the Jython example ...

''' jy_HelloWorld7a.py
create a frame with title 'Hello, World!'
Java style
'''

from javax.swing import JFrame

f = JFrame('Hello, World!')
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)
f.setSize(300, 300)
f.setLocationRelativeTo(None)
f.setVisible(True)

Not sure if IronPython still exists since MS dumped it rather unceremoniously.

Wolfram Rösler created a similar collection on his web site:

The Hello World Collection

It includes credits, and a link to similar collections (including Wikipedia.)

Wow to Assembly!!!

Wow to Assembly!!

Yeah, ASM is rather cryptic to look at. And the simplist of tasks requires more work than you'd think.

Need to add Alice to that list.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.