Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Programming in Japanese

Name: Anonymous 2006-09-23 23:52

Or any other language.

Anyway, I'm just curious; if you're a native jap or something and only speak ______, do you need to learn english to program? what about html? on any foreign language site I've looked at, the source is always written in english...

Name: Anonymous 2008-08-31 10:50

in 1463 columbus sailed the ocean blue

Name: Sageing fail since 1463 2008-08-31 11:59

sage because of >>41's bump.

Name: Anonymous 2008-08-31 12:10

>>42
faggot.

Name: Sageing fail since 1463 2008-08-31 12:21

sage because of >>43's bump.

Name: Anonymous 2008-08-31 18:22

bump because of >>44's sage.

Name: Sageing fail since 1463 2008-08-31 18:57

>>45
om nom nom

Name: Anonymous 2008-12-28 1:06

The /prog/ Historical Rescue Team has determined that this thread must be bumped for the following reason(s):
• First known reference to "GRUNNUR"

Name: Anonymous 2008-12-28 1:24

but programs aren't written in english, they just use english characters..... (unless you're using VB)

Name: Anonymous 2008-12-28 5:13

>>48
for i:=1 to 100 do
  print('hax my anus, ', i, '-san');



GRUNNUR i:=1 GRUNNUR 100 GRUNNUR
  GRUNNUR('hax my anus, ', i, '-san');


Which makes more sense to an English-speaking nonProgrammer?

Name: Anonymous 2008-12-28 6:29

>>49
Obviously the first, seeing as how you made the second deliberately meaningless by using the same keyword for all functionality. It's basically equivalent to
do i:= 1 do 100 do
  do('hax my anus, ', i, '-san');

Name: Anonymous 2008-12-28 6:48

for i:=1 to 100 do
  print('hax my anus, ', i, '-san');


orðinn i:=1 saftblanda 100 hljóðkerfisfræði
  GRUNNUR('hax my anus, ', i, '-san');


Better? Please disregard the lack of sense in the second example, they are there only to show a point, I don't speak GRUNNUR)

Name: Anonymous 2008-12-28 6:49

>>50
BUFFALO BUFFALO BUFFALO BUFFALO BUFFALO BUFFALO

Name: Anonymous 2008-12-28 10:47

Visual Basic and OLE/COM technology had the foresight to allow multilingual APIs. Does your favorite fag language have such futuristic capabilities?

I think not.

Name: Anonymous 2008-12-28 15:46

i = 1 kara 100 made koushite:
   miteageru('hakkusu mai einasu, ', i, 'san');

Name: Anonymous 2008-12-28 16:07

I'm disrespectful to bugs. Can you see that I am serious?

Out of my way, all of you. This is no place for cudders! Join me or die! Can you do any less?

Name: Anonymous 2008-12-28 16:18

"GRUNNUR"

Name: Anonymous 2008-12-28 17:54

dönemeç:
bastır("ibnesiniz hepiniz");
git dönemeç;

Name: Anonymous 2008-12-28 18:18

pour i = 1 jusqu'à 100 faire:
    afficher('haxez mon anus, monsieur', i);

Name: Anonymous 2008-12-28 19:05


per favor i = 1 a 100 fare:
        gli stampare(output_normale,"lo haxi il mio anus, senior", i);

Name: Anonymous 2008-12-28 19:36

minden i-nél 1 és 100 között csínalj meg:
    írj("tessék haxni az anusomat, úram", i);

Name: Anonymous 2008-12-28 20:06

pääohjelma :: SyöttöJaTulostus ()
pääohjelma = tee
  kirjoitaMjonoRv "Syötä kokonaisluku."
  n <- tulkkaaRv
  tulosta € kertoma n

kertoma :: (Kokonainen a) => a -> a
kertoma n = tulo [2..n]

Name: Anonymous 2008-12-28 20:18

>>61
  tulosta € kertoma n

I chuckled.

Name: Anonymous 2008-12-28 20:28

offentlig klass Heltalsmängd {

    offentligt slutligt statiskt heltal KAPACITET = 10;
    offentligt slutligt statiskt heltal STANDARDINKREMENT = 10;

    privat heltal storleksinkrement;
    privat heltal[] tabell;
    privat heltal elementantal;

    offentlig Heltalsmängd() {
        denna(KAPACITET, STANDARDINKREMENT);
    }

    offentlig Heltalsmängd(heltal kapacitet) {
        denna(kapacitet, STANDARDINKREMENT);
    }

    offentlig Heltalsmängd(heltal kapacitet, heltal storleksinkrement) {
        denna.tabell = ny heltal[Matematik.maks(0, kapacitet)];
        denna.storleksinkrement = Matematik.maks(1, storleksinkrement);
        denna.elementantal = 0;
    }
   
    privat boolesk full() {
        returnera denna.elementantal == denna.tabell.längd;
    }
   
    privat tomrum utvidga() {
        heltal[] nyTabell = ny heltal[denna.tabell.längd + denna.storleksinkrement];
        för(heltal i = 0; i < denna.elementantal; i++) {
            nyTabell[i] = denna.tabell[i];
        }
        denna.tabell = nyTabell;
    }
   
    offentlig boolesk tillägg(heltal tal) {
        heltal index = 0;
        för(heltal i = 0; i < denna.elementantal; i++) {
            index = i;
            om(denna.tabell[i] == tal) {
                returnera falskt;
            } annars om(denna.tabell[i] > tal) {
                avbryt;
            } annars {
                index++;
            }
        }
        returnera denna.tillägg(tal, index);
    }
   
    privat boolesk tillägg(heltal tal, heltal index) {
        om(denna.full()) denna.utvidga();
       
        om(0 <= index && index <= denna.elementantal) {
            heltal förra = tal;
            för(heltal i = index; i <= denna.elementantal; i++) {
                heltal hjälp = denna.tabell[i];
                denna.tabell[i] = förra;
                förra = hjälp;
            }
            denna.elementantal++;
            returnera sant;
        } annars {
            returnera falskt;
        }
    }
   
    offentlig boolesk avlägsna(heltal tal) {
        för(heltal i = 0; i < denna.elementantal; i++) {
            om(denna.tabell[i] == tal) {
               returnera denna.avlägsnaIndex(i);
            } annars om(denna.tabell[i] > tal) {
                avbryt;
            }
        }
        returnera falskt;
    }
   
    privat boolesk avlägsnaIndex(heltal index) {
        om(0 <= index && index < denna.elementantal) {
            för(heltal i = index; i < denna.elementantal-1; i++) {
                denna.tabell[i] = denna.tabell[i+1];
            }
            denna.elementantal--;
            returnera sant;
        } annars {
            returnera falskt;
        }
    }
   
    offentlig boolesk innehåller(heltal tal) {
        för(heltal i = 0; i < denna.elementantal; i++) {
            om(denna.tabell[i] == tal) {
                returnera sant;
            } annars om(denna.tabell[i] > tal) {
                avbryt;
            }
        }
        returnera falskt;
    }
   
    offentligt heltal storlek() {
        returnera denna.elementantal;
    }
   
    offentlig Sträng tillSträng() {
        Sträng str = "{";
        boolesk första = sant;
        för(heltal i = 0; i < denna.elementantal; i++) {
            om(första) {
                första = falskt;
            } annars {
                str += ", ";
            }
            str += denna.tabell[i];
        }
        returnera str + "}";
    }
}

Name: >>63 2008-12-28 20:30

Wait, s/maks/max/.

Name: Anonymous 2008-12-28 22:45

Maks my anus

Name: Anonymous 2008-12-28 22:46

>>63
för
lol'd

Name: Anonymous 2008-12-29 8:27

>>63
jag lollade

#include <stdio.h>

/* this is BETTER c ;)
** http://thedailywtf.com/forums/60255/ShowPost.aspx
 */
#define LEFT_CURLY_BRACE {
#define RIGHT_CURLY_BRACE }
#define LEFT_PARENTHESIS (
#define RIGHT_PARENTHESIS )
#define EOL ;
#define INTEGER int
#define CHARACTER char
#define NOTHING void
#define ECHO printf
#define TERMINATE exit

INTEGER main LEFT_PARENTHESIS NOTHING RIGHT_PARENTHESIS LEFT_CURLY_BRACE
        ECHO LEFT_PARENTHESIS "hello nigra!\n" RIGHT_PARENTHESIS EOL
        TERMINATE LEFT_PARENTHESIS 0 RIGHT_PARENTHESIS EOL
RIGHT_CURLY_BRACE

Name: Anonymous 2009-03-06 9:08

The ISO is fine   for its purpose   For general development   of a bot   tell me what   API your client   such as web   server and does   all of this   is a matter   would concern only   a stupid person   like yourself answered.

Name: Anonymous 2009-03-06 13:43


The intro to algos by Ron Rivest   for the explaination?

Name: Anonymous 2009-11-16 4:57

>>58
des d'i = 1 fins a 100 fes:
    mostra('haxeja el meu anus, senyor', i);

Name: Anonymous 2009-11-16 5:26


間(本当){
  印刷物("こんにちは世界\n");
}

Name: GRUNNUR MEME FAN 2009-11-16 6:06

"GRUNNUR"

Name: Anonymous 2009-11-16 7:30

   
Introduction
Handbook that contains a description of the programming language Fjölni. Fjölnir is different from most other forritunarm
álum in three ways:
Fjölnir is Icelandic programming
Fjölnir is listavinnslumál
Fjölnir the programming unit
The latter two items are what makes Fjölni a powerful programming language. List Processing is characterized important programming language. Art Vinnslan makes all the values in the programming language as easy meðförum and allows developers to solve problems easily, which are difficult or nearly impossible in other programming languages. Unit Program Optimizer allows the programmer then to pack up their solutions in modules that can be used again and again. List processing in Fjölni is similar to other list processing languages such as LISP and LOGO. Unit Uninstalling Applications in Fjölni is however very different from units in other programming unit programming languages such as Modula-2, Ada and C + +. Unit Uninstalling Applications in Fjölni gives the programmer the opportunity to do more than these programming languages and the simpler way.

Name: Anonymous 2011-02-04 16:39

Name: Anonymous 2011-02-17 19:46

dubz

Name: Anonymous 2011-09-25 14:07

pantsu

Name: Sgt.Kabu쯢奀kiman琂浐 2012-05-28 20:15

Bringing /prog/ back to its people
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy
All work and no play makes Jack a dull boy

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List