hello-worlds icon indicating copy to clipboard operation
hello-worlds copied to clipboard

Hello World programs needed

Open knightking100 opened this issue 7 years ago • 34 comments

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;
});
-->

knightking100 avatar Oct 01 '17 13:10 knightking100

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

harshit98 avatar Oct 01 '17 16:10 harshit98

I would like to add actionscript Hello World Program

MadhavBahl avatar Oct 01 '17 17:10 MadhavBahl

#67 Add ALGOL Hello World

MadhavBahl avatar Oct 01 '17 17:10 MadhavBahl

Add MATLAB Hello World #75

MadhavBahl avatar Oct 02 '17 02:10 MadhavBahl

If you think a language is missing, put it here

knightking100 avatar Oct 02 '17 05:10 knightking100

Matlab and algol

On 2 Oct 2017 10:52, "knightking100" [email protected] 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_ .

MadhavBahl avatar Oct 02 '17 05:10 MadhavBahl

@MadhavBahlMD Only 1 language per pull request

knightking100 avatar Oct 02 '17 05:10 knightking100

Ohh ok no problem take any one you want :)

On 2 Oct 2017 11:01, "Madhav Bahl" [email protected] wrote:

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

On 2 Oct 2017 10:59, "knightking100" [email protected] 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_ .

MadhavBahl avatar Oct 02 '17 05:10 MadhavBahl

Updated contributing guide

knightking100 avatar Oct 02 '17 05:10 knightking100

Add PR #98 LOLCODE

TheDreamSaver avatar Oct 03 '17 09:10 TheDreamSaver

i would add hello world for prolog language

engrravijain avatar Oct 04 '17 14:10 engrravijain

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

jdemangeon avatar Oct 04 '17 16:10 jdemangeon

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

berkedel avatar Oct 06 '17 16:10 berkedel

Oops! Didn't mean to close.

uwx avatar Oct 11 '17 15:10 uwx

Can you add Kitanai :) ?

Sygmei avatar Oct 11 '17 23:10 Sygmei

Added! @Sygmei

uwx avatar Oct 11 '17 23:10 uwx

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

alebcay avatar Oct 12 '17 00:10 alebcay

Added BASIC256

lucianosds avatar Oct 16 '17 03:10 lucianosds

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

titonobre avatar Oct 18 '17 02:10 titonobre

I'd like to add a Velato hello World!

nabladev avatar Oct 18 '17 15:10 nabladev

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

uwx avatar Oct 18 '17 16:10 uwx

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

DTV96Calibre avatar Oct 18 '17 22:10 DTV96Calibre

Heron added #302

YonatanHanan avatar Oct 19 '17 05:10 YonatanHanan

Added hello world in Scratch #362

warlockz avatar Oct 21 '17 19:10 warlockz

#415 Created Hello World for PHP

hatimalam avatar Oct 24 '17 02:10 hatimalam

446 Added Hello World in Basic256

wilburhimself avatar Oct 24 '17 21:10 wilburhimself

oops didn't mean to close

uwx avatar Oct 25 '17 01:10 uwx

Hello, world! in Brainfuck.bf #532

ErangaHeshan avatar Oct 26 '17 21:10 ErangaHeshan

Add Hello Word Program in Python 2

umeshpandey1994 avatar Oct 29 '17 03:10 umeshpandey1994

i also want to work on this

daya2940 avatar Oct 13 '19 11:10 daya2940