This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pessoa = Class({ | |
nome = ""; | |
falar = { texto: | |
print(texto); | |
}; | |
}); | |
p = Pessoa("Rafael Caricio"); | |
print( p("nome") ); | |
p("falar")("Hello world!"); |
Tudo na linguagem é função, expressão, lista e valor. Inclusive o "if". Que nela é uma função que é definida na propria linguagem:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if = { _op, _true, _false: | |
_op && _true() || _false() | |
}; |
E usado desta foma:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
k = 0; | |
if ( x == 2, { | |
*k = 2 | |
}, { | |
*k = 3 | |
}); |
O "*" informa ao interpretador que estou querendo referenciar a variável "k" no escopo dinâmico (escopo onde a função está sendo executada) e não no escopo local interno da função, onde modificações a esta variável não fariam diferença para o escopo onde a função foi chamada (caso exista uma variável com o mesmo nome).
Na linguagem existe também apenas uma estrutura de loop que é o "while". E funciona da seguinte forma:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i = 10; | |
while { i > 0: | |
print( i ); | |
*i-- | |
}; |
Com o "while" eu posso definir como é minha estrutura de "for". Assim:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for = { number, block: | |
_i = 0; | |
while { i < number: | |
_i++; | |
block(_i - 1) | |
} | |
} |
E usar da seguinte forma:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = []; | |
for(10, { i : | |
*a[i] = i | |
}); |
Assim o valor de "a" é [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]. E outra coisa interessante que posso definir é a função "map", que ficaria da seguinte forma:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
map = { _array, func: | |
_x = len(_array); | |
while { _x > 0: | |
_x--; | |
_func(_array[_x - 1]) | |
} | |
}; |
Nesta linguagem o comportamento do "map" é o mesmo do "for each" pois uma função SEMPRE retorna um valor nem que ele seja "Null".
Com o essas funções previamente definidas, podemos implementar uma função de "filter" e ficaria assim:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filter = { _array, _func: | |
map( map(_array, _func), { _item: | |
if ( _item, { | |
_item | |
}); | |
}); | |
}; |
Os "_" underlines nestas funções servem para não conflitar com nome das variáveis do escopo onde o programador vai usar.
Quem quiser saber mais sobre este projeto pode acompanhar pelo github. Aceito reclamações, xingamentos, elogios e etc.
https://github.com/rafaelcaricio/fny