Tuesday, July 18, 2006

Ribbon-cutting blog

I hereby declare this blog open!! :)

5 comments:

luminous_infinitus said...

if 'Open' were an Object, you'd rather declare it as

Open blog = null;

;)

luminous_infinitus said...

On second thoughts,
Open blog = new Open();

Just another blogger said...

@NoRib,
correct me if i am wrong.. but the blog is the object, and open is a function performed on it... so the code shud be.. ahem.. rusty java
Blog randomBlog = new Blog();
randomBlog.open();
while() //infinite loop!! duh!!
{
randomBlog.post();
}
Cheers
G3

Parag Desai said...

throw new DontMakeFunOfJavaException();

Anonymous said...

Well a c# command would be

class blog
{
bool open = false;

public blog blog()
{
initialize component;
}
public void open()
{
open = true;
}