-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should "Hello world" be standardised? #1528
Comments
|
I agree. There should be subfolders for different types of hello worlds (3D, text, etc) |
It strikes me that many different implementations of "Hello World" are implemented here, many with very different results...
Something like
in c++ which prints to stdout, is very different from the result of
in
vba
prints to a Win32 MessageBox (a dialog), which is very different from the result ofBlender.py
which draws some 3d text in a scene.
In my opinion it doesn't really make a whole lot of sense to say all of these are the same "hello world". In reality
Python
's equivalent would beprint("Hello world")
andVBA
's would beDebug.Print "Hello world"
.Sure these other implementations are neat, and it's nice to be able to see different kinds of "hello world" mechanisms.
Related to #1527 it might be better to create subfolders for these implementations instead with a standardised naming convention?
The text was updated successfully, but these errors were encountered: