Skip to main content

Posts

Highlighted posts

What is ALB?

First of all, welcome! This is the official blog of ALB. Here we will post news, updates and some other things related to it. But... What is ALB? ALB has been created as an open-source project by me, Alberto Navalón, with the objective of creating a useful and also powerful programming language, such as others like C++, Java, Python... What's the purpose of it? Whatever you want! This language should be suitable for anyone who wants to use it: a game developer, a mathematician, or even a kid with eager to learn! By now, this is just an idea. But together, we can bring this project to the world, and make it fly, and let people create unimaginable things! That would be awesome, wouldn't it? Some people would reproach us that we are crazy, but do not listen to them. If you are a professional developer, an student, or just someone that wants to learn more about programming languages, open-source projects, or any other thing, come and join us! And remember, It is sometime...
Recent posts

Hello, world!

If you have some experience in programming, you have probably seen this quote uncountable times. The Hello, world! start is always a good start. With such a simple meaning, it can make you learn a lot of useful things about the language you want to learn. We will take C++ as an example. This is the code that makes that beautiful and simple quote to appear on your screen: #include <iostream> using namespace std; int main() {  cout<<"Hello, world!"<<endl;  return 0; } First of all, you will notice the #include <iostream> . From now on, you have to remember to include that library when you want to use the stdout or stdin . Then, we have using namespace std; . Although this line can be omitted, it is way better to include it in our program. Otherwise, we would have to add std:: before every single token calling a function inside the Standard Library, so the fifth line would be: std::cout<<"Hello, world!"<<std::endl; And ...

We are looking for contributors!

Are you a professional developer, a mathematician, an economist, a doctor, a student, and you are passionate about programming languages and open-source? If so, come and join us! There is room for everyone in this project. Do you want to build the core? Do you want to write documentation? Whatever your purpose is, we are sure you will like collaborating with us. Now, if you want to sign up and be part of our team, feel free to fill up this form , so we can sign you up and register you in our database: Cargando...

GitHub for ALB!

We are glad to announce from the ALB Developers Team, that we have a GitHub repository! Here you all can propose changes and contribute by providing your code, your documentation and your ideas. To do so, and if you don't have one, you just have to create a free account, and start contributing. It's very easy! Also, if you don't already know what GitHub is, feel free to check out this video: You can go to our repository by clicking here (or copy and paste this URL in your preferred browser: https://github.com/albertonl/alb ). We are eager to see your contributions!