Developing Linux

Ask questions regarding Gentoox, Gentoo and Linux in general in these forums and we'll do our best to help you!
Post Reply
nutsy4
Novice
Posts: 24
Joined: Sun Jan 11, 2004 7:21 pm

Developing Linux

Post by nutsy4 »

What programming language is used to develop Linux?
msnyder
Adept
Posts: 59
Joined: Wed Jan 28, 2004 7:47 pm
Location: Tyler, Texas

Post by msnyder »

Depends on what you are programming. Utilities for linux can be programmed in different launguages than, say the kernel.
Trogdor
Gentoox Guru!
Posts: 553
Joined: Tue Oct 07, 2003 9:57 pm
Location: MOUNT TAPE U1439 ON B3, NO RING

Post by Trogdor »

Develop Linux, or develop ON Linux? The linux kernel is made in C and ASM. You can program in any language ON Linux (exceptions: *BASIC, I think).
MOUNT TAPE U1439 ON B3, NO RING

Q: HOW DO I RUN MAGIC ??
A: You run magic by not typing in capital letters.
nobspangle
Gentoox Guru!
Posts: 1681
Joined: Sun Sep 28, 2003 11:59 am
Location: Manchester, UK

Post by nobspangle »

If you keep an open mind, will your brain fall out?
Trogdor
Gentoox Guru!
Posts: 553
Joined: Tue Oct 07, 2003 9:57 pm
Location: MOUNT TAPE U1439 ON B3, NO RING

Post by Trogdor »

nobspangle wrote:I found some versions of basic http://www.devchannel.org/devtoolschann ... 9202.shtml
Fool me once, shame on THOSE IDIOT WHO PORTED A USELESS LANGUAGE! :mrgreen:
MOUNT TAPE U1439 ON B3, NO RING

Q: HOW DO I RUN MAGIC ??
A: You run magic by not typing in capital letters.
nobspangle
Gentoox Guru!
Posts: 1681
Joined: Sun Sep 28, 2003 11:59 am
Location: Manchester, UK

Post by nobspangle »

10 print hello
20 goto 10

what do you mean useless
If you keep an open mind, will your brain fall out?
Trogdor
Gentoox Guru!
Posts: 553
Joined: Tue Oct 07, 2003 9:57 pm
Location: MOUNT TAPE U1439 ON B3, NO RING

Post by Trogdor »

nobspangle wrote:10 print hello
20 goto 10

what do you mean useless

Code: Select all

#include <iostream>

int main()
{
 for(,,)
 {
  cout << "hello" << endl;
 }
 return 0;
}

Code: Select all

#include <conio>

int main()
{
 for(,,)
 {
  printf("hello\n");
 }
 return(0);
}

Code: Select all

<?php
 for (,,)
 {
  echo "hello\n"
 }
?>

Code: Select all

for ((;;))
do
  echo -n "hello "
done
I can't think of anything else, at the moment.
MOUNT TAPE U1439 ON B3, NO RING

Q: HOW DO I RUN MAGIC ??
A: You run magic by not typing in capital letters.
Post Reply