You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jennahorrall edited this page Feb 1, 2019
·
8 revisions
Less-Java
An Introductory Programming Language
Less-Java is very similar to Java, with some simplified changes to syntax and function in order to promote understanding of concepts in a more simplified manner.
Here is a basic hello world program:
main() {
println(“Hello, World”);
}
Notice two things that differ from Java:
Instead of public static void main(String[] args), the main method is recognized as main()
Instead of System.out.println(“Hello, World!”), it is simply println(“Hello, World)