Demo Explicartu Project

A demo that showcasts all the features of Explicartu!

Index

Global variable: number (int): An inconspicuous number variable.

[Back]

Global variable: number (string): A string variable that stores the string "Hi there!". Used in the function printHi.

[Back]

Global function 'main'

Description: Prints 'Hello World' and calls 'printHi'.
Return type: int: Returns 1 and exits.
Important: This funcion returns 1, not 0!
[Back]

Global function 'printHi'

Description: Prints a string as many times as told to.
Parameter: times (int): How many times to print the string.
Parameter: saySomething (string): The string to be printed.
[Back]

Class 'myClass'

Description: A demo class with no use whatsoever!

TODO: Make this class greater.

Property: isThisClassGreat (bool): Stores if this class is great of not (default: true).
Property: someNumber (float): Some other number.

Method: addNumbers
- Description: Adds a number to the property 'someNumber'.
- Parameter: otherNumber (int): Number to add.
- Details: You can add details to functions and classes.

Method: myClass
- Description: Constructor of this class. Does nothing then dies.x

[Back]