{{language|Kantalo
|version=0.0.2
|exec=interpreted
|strength=weak
|express=explicit
|checking=dynamic
|gc=yes
|tags=Kantalo,Language 
|LCT=yes
|hopl=no
|safety=unsafe
|site=http://kantalo.kesug.com/}}

=={{header|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:

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

<br>
Simple Hello world with kantalo:
<br>
<syntaxhighlight lang="Kantalo">
var.save nome = "Alice",
func saudacao > (
    terminal.text("Seja bem-vindo(a), -*nome*-!")
)
execute saudacao
</syntaxhighlight>