Skip to content

brazuka-script/brazuka-script

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Logo

Brazuka Script

A programming language for Brazilians

Status

This language was developed back in 2012 and the current status is not stable, therefore use it at your own risk.

Example

Hello World
funcao principal()
{
  escreva("Hello World");
}
Add two numbers
funcao principal()
{
  inteiro x;
  inteiro y;
	
  escreva("Digite dois valores inteiros:\n");
  leia("%d %d", x, y);
	
  inteiro soma = x + y;
  escreva("A soma e': %d", soma);
}