Click here to Skip to main content
15,878,814 members
Articles / High Performance Computing / Vectorization

Bird Programming Language: Part 1

Rate me:
Please Sign up or sign in to vote.
4.92/5 (129 votes)
1 Jan 2013GPL312 min read 371.8K   2.7K   153  
A new general purpose language that aims to be fast, high level and simple to use.
void bb_BeginPerf();
void bb_EndPerf();
void bb_PrintInt(int x);

int LNKO(int i, int j)
{
	while (i != j)
	{
		if (i > j) i -=j;
		else j -= i;
	}
	
	return i;
}

void GccEntry()
{
	bb_BeginPerf();
	
	int Ret = 0, i, j;
	for (i = 1; i <= 25000; i++)
		for (j = 1; j <= 25000; j++)
			Ret += LNKO(i, j);
		
	bb_EndPerf();
	bb_PrintInt(Ret);
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer
Hungary Hungary
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions