8 lines
242 B
Text
8 lines
242 B
Text
programa {
|
|
// funcao defines a new function
|
|
// inicio is the entry point of the program, like main in C
|
|
funcao inicio() {
|
|
// escreva is used to print stuff to the screen
|
|
escreva("Hello, world!\n") // no ';' needed
|
|
}
|
|
}
|