knightking100 / hello-worlds

Yet another collection of Hello World programs
The Unlicense
69 stars 457 forks source link

Hello World programs needed #1

Open knightking100 opened 7 years ago

knightking100 commented 7 years ago

List of languages. Pick one you like and open a PR. Make sure you've read CONTRIBUTING.md

You can also request a new language to be added to the list, just leave a comment here.

<!--
function comparer(a, b) {
  const re = /(\d+)|(\D+)/g;
  a = a.slice(5).trim();
  b = b.slice(5).trim();
  if (a[0] == '[') a = a.substring(1);
  if (b[0] == '[') b = b.substring(1);

  const ax = [], bx = [];
  let an, bn, nn;

  a.replace(re, (_, $1, $2) => ax.push([$1 || Infinity, $2 || ""]));
  b.replace(re, (_, $1, $2) => bx.push([$1 || Infinity, $2 || ""]));

  while (ax.length && bx.length) {
    an = ax.shift();
    bn = bx.shift();
    nn = (an[0] - bn[0]) || an[1].localeCompare(bn[1]);
    if(nn) return nn;
  }

  return ax.length - bx.length;
}
copy(a.split('\n').filter((v, i, s) => s.findIndex(e => e.slice(5) == v.slice(5)) === i).sort(comparer).join('\n'))

copy(a.split('\n').filter((v, i, s) => i === s.findIndex(e => e.slice(5).toLowerCase() == v.slice(5).toLowerCase())).sort(comparer).join('\n'));

b = b.trim().split('\n');
a = a.trim().split('\n').map(e => {
  if (!e.startsWith('- [ ]')) return e;
  for (var c of b) {
    if (e.toLowerCase().indexOf('[' + c.toLowerCase() + ']') > -1) {
      b.splice(b.indexOf(c), 1);
      return '- [x' + e.substring(4);
    }
  }
  return e;
});
-->
harshit98 commented 7 years ago

I would like to create a Hello World program in Arduino language. 👍

MadhavBahl commented 7 years ago

I would like to add actionscript Hello World Program

MadhavBahl commented 7 years ago

67 Add ALGOL Hello World

MadhavBahl commented 7 years ago

Add MATLAB Hello World #75

knightking100 commented 7 years ago

If you think a language is missing, put it here

MadhavBahl commented 7 years ago

Matlab and algol

On 2 Oct 2017 10:52, "knightking100" notifications@github.com wrote:

If you think a language is missing, put it here

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/knightking100/hello-worlds/issues/1#issuecomment-333443340, or mute the thread https://github.com/notifications/unsubscribe-auth/AY94uuYeVm8jK5wB87_TzZaNUQZhOlSqks5soHMWgaJpZM4Pp5O_ .

knightking100 commented 7 years ago

@MadhavBahlMD Only 1 language per pull request

MadhavBahl commented 7 years ago

Ohh ok no problem take any one you want :)

On 2 Oct 2017 11:01, "Madhav Bahl" madhavbahl10@gmail.com wrote:

Ohh ok no problem, yltake any one you want :)

On 2 Oct 2017 10:59, "knightking100" notifications@github.com wrote:

@MadhavBahlMD https://github.com/madhavbahlmd Only 1 language per pull request

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/knightking100/hello-worlds/issues/1#issuecomment-333444057, or mute the thread https://github.com/notifications/unsubscribe-auth/AY94up0h3tyIcAd_79x19OgbopD3iYg0ks5soHSlgaJpZM4Pp5O_ .

knightking100 commented 7 years ago

Updated contributing guide

TheDreamSaver commented 7 years ago

Add PR #98 LOLCODE

engrravijain commented 7 years ago

i would add hello world for prolog language

jdemangeon commented 7 years ago

Add PR #108 for Crystal language (https://crystal-lang.org/)

berkedel commented 6 years ago

@knightking100 we are missing Swift language here. I already made PR #134 if it is okay.

uwx commented 6 years ago

Oops! Didn't mean to close.

Sygmei commented 6 years ago

Can you add Kitanai :) ?

uwx commented 6 years ago

Added! @Sygmei

alebcay commented 6 years ago

As far as I know, Nimrod is now known as just Nim.

lucianosds commented 6 years ago

Added BASIC256

titonobre commented 6 years ago

Just created two PR but forgot to mention ask here first. Please add:

nabladev commented 6 years ago

I'd like to add a Velato hello World!

uwx commented 6 years ago

@DarkSiderOC You don't have to ask, just send in a PR :)

DTV96Calibre commented 6 years ago

I'd like to add GDScript to the list of languages (I also have a helloworld that I'll add when approved)

YonatanHanan commented 6 years ago

Heron added #302

warlockz commented 6 years ago

Added hello world in Scratch #362

hatimalam commented 6 years ago

415 Created Hello World for PHP

wilburhimself commented 6 years ago

446 Added Hello World in Basic256

uwx commented 6 years ago

oops didn't mean to close

ErangaHeshan commented 6 years ago

Hello, world! in Brainfuck.bf #532

umeshpandey1994 commented 6 years ago

Add Hello Word Program in Python 2

daya2940 commented 4 years ago

i also want to work on this

uwx commented 4 years ago

@daya2940 just send a PR in!

tiotobing commented 4 years ago

Add X++ and EPL #842 #841

Wmonroy323 commented 4 years ago

What's this?

shivam123-dev commented 3 years ago

@knightking100

Added the Hello World program in Calculator language and created a pull request here