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...
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 ...