Jump to content

Category:Kantalo

From Rosetta Code
Language
Kantalo
This programming language may be used to instruct a computer to perform a task.
Official website
Execution method: Interpreted
Garbage collected: Yes
Type safety: Unsafe
Type strength: Weak
Type expression: Explicit
Type checking: Dynamic
Lang tag(s): Kantalo,Language
See Also:
Listed below are all of the tasks on Rosetta Code which have been solved using Kantalo.

Kantalo

Kantalo is a non-object-oriented programming language, with the aim of making it easier to use.

Main commands

Here are some kantalo commands:

  • var.save - It is used to define variable.
  • var.import - Import variable outside functions.
  • var.edit - Edit an Existing Variable.
  • terminal.text - Returns a message passed within the argument.
  • terminal.input - Creates a text input.
  • if- Used to create conditions .
  • func - It is used to create functions.
  • execute - Performs functions.

  • Simple Hello world with kantalo:

    var.save nome = "Alice",
    func saudacao > (
        terminal.text("Seja bem-vindo(a), -*nome*-!")
    )
    execute saudacao

    Subcategories

    This category has only the following subcategory.

    K