What Do You Know?

quagmondo23

New Member
How many (and what) programming languages do you know?

Not just heard of but are able to code in.
I'll start:

Code:
printf("I know C! What about you?\n");
Code:
<html>
<body>
<p>I know (X)HTML, CSS, small bit of Flash, some JavaScript</p>
</body>
</html>
 
Last edited:
C++:
Code:
int main()
{
   cout<<"Hello CF!";
   return 0;
}

Object Pascal (Delphi):
Code:
procedure TComputerForum.Troll1Feed(Sender: TObject)
   var i:integer;
begin
   for i:=1 to ModCount do
      Mods[i].Post('Don't feed the troll!'):
end;

I also used to do (Visual) Basic a fair bit, though I haven't been owrking on any Basic languages for a while.
 
C#

Code:
static void Main(string[] args)
        {
               Console.WriteLine("I know C#");
        }

HTML
Code:
<html>
<body>
<p style="padding: 0px;">I know XHTML, CSS, and a tiny bit of PHP and JAVA.</p>
<br />
<body>
<html>

Tiny bit of Basic, and C++, but dont feel its justified to stick it here.

Anyway, we already had a thread like this a while back. Where we tried to see how many different programing languages people knew on the forum.

But this does spark an idea in me. What if someone started out a very simple program that when you pushed a button, X happened. Passed the program onto someone else and they added whatever they wanted. Say, push the button, and X+Y happened. We could continue to pass the program on and on and adding and adding. What do you guys think?
 
C++:
Code:
int main()
{
   cout<<"Hello CF!";
   return 0;
}

Object Pascal (Delphi):
Code:
procedure TComputerForum.Troll1Feed(Sender: TObject)
   var i:integer;
begin
   for i:=1 to ModCount do
      Mods[i].Post('Don't feed the troll!'):
end;

Nice. :D

In community college, I took a class on basic HTML. I recieved a B, but I forgot everything. That was about four years ago.
 
C#

Code:
static void Main(string[] args)
        {
               Console.WriteLine("I know C#");
        }
HTML
Code:
<html>
<body>
<p style="padding: 0px;">I know XHTML, CSS, and a tiny bit of PHP and JAVA.</p>
<br />
<body>
<html>
Tiny bit of Basic, and C++, but dont feel its justified to stick it here.

Anyway, we already had a thread like this a while back. Where we tried to see how many different programing languages people knew on the forum.

But this does spark an idea in me. What if someone started out a very simple program that when you pushed a button, X happened. Passed the program onto someone else and they added whatever they wanted. Say, push the button, and X+Y happened. We could continue to pass the program on and on and adding and adding. What do you guys think?

That sounds quite fun. Only problem is how to pass the program.

Also what language?
 
That sounds quite fun. Only problem is how to pass the program.

Also what language?

I could host a zip of the sln (assuming using visual 2008/2005) on my website, no problem :).

As for the language, I of course would like if it was in C#. But we might want to make a poll to see what people prefer/what is the most known language. Maybe HTML, relatively easy, quick, and fun :D!
 
html is quite easy... well... considering i know it.

I only know C though...
I could probably pick up basic handy enough. Also had past experience with python
 
Code:
print "I know a bit of Python."
print "[URL="http://www.freenetpages.co.uk/hp/alan.gauld/"]This[/URL] is the guide I am currently using to learn Python.
 
I'm trying to make a poll but its not working.
Languages so far:
C
C++
C#
BASIC
Python
Visual Basic
Batch
HTML
Delphi
 
Code:
<html>
<head>
<title>No title</title>
</head>
<body>
HTML and a bit of javascript
<script language="JavaScript" type ="text/javascript">
<!--
document.write("You're getting pwn3d on" + Date())
//-->
</script>
</body>
</html
 
Back
Top