About AlBasmala

Here are some of my latest thoughts on cheat-sheet…

📡 Subscribe via RSS


Articles on this page
  1. Java CheatSheet
  2. Arabic CheatSheet

Java CheatSheet

Article image
This is a quick reference of concepts in modern Java.

Modern Java is a strongly-typed, eagery evaluated, case sensative, yet whitespace insensative language. It uses hierarchies of classes/types to structure data, but also has first-class support for functional-style algebraic datatypes.

Java programs are made up of ‘classes’, classes contain methods, and methods contain commands. To just try out a snippet of code, we can

In order to run a java program, it must have a main method as an entry point.

public class LearnJava {
    // In order to run a java program, it must have a main method as an entry
    // point.
    public static void main(String[] args) {
        System.out.println("Hello World!");

        // Use System.out.printf() for easy formatted printing.
        System.out.printf("pi = %.5f", Math.PI); // => pi = 3.14159
    }
}


Arabic CheatSheet

Article image
This is a quick reference of concepts in the Arabic language.



Thanks for reading everything! 😁 Bye! 👋

Creative Commons License
Life & Computing Science by Musa Al-hassy is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License