Statements End with Semicolons

This section describes how to end a statement in H language source code.

A statement is a fundamental unit of code. It must be ended with a semicolon.

This allows developers to enter multiple statements in a single line and single statement in multiple lines. For example,

a = 1; b = 2; 
c 
  = 3;

Table of Contents

 About This Book

 Introduction of H Language

Syntax

 Source Code Encoding Format - UTF-8

Statements End with Semicolons

 Inline Comments Start with #

 Block Comments Enclosed in #(...)#

 Group Statement Uses (...); Format

 Block Statement Uses {...}; Format

 Data Types

 Variables

 Expressions

 Statements

 "boolean" Data Type

 "integer" Data Type

 "string" Data Type

 "real" Data Type

 "array" Data Type

 Source Code Packages

 Classes and Objects

 Object Oriented Programming

 Inheritance - Object Attachments

 Encapsulation - Private Members

 References

 Full Version in PDF/ePUB