Skip to content

Instantly share code, notes, and snippets.

@theuves
Created February 25, 2019 17:27
Show Gist options
  • Save theuves/5335f50b708615a9213e89e91b6c57d1 to your computer and use it in GitHub Desktop.
Save theuves/5335f50b708615a9213e89e91b6c57d1 to your computer and use it in GitHub Desktop.
Rascunho aleatório acerca da análise de uma frase.
[ 'Todo', 'professor', 'tem', 'vários', 'alunos', '.' ]
[
{
valor: 'Todo',
cru: 'todo',
tipo: 'quantidade',
formula: (x) => x === x
},
{
valor: 'professor',
cru: 'professor',
tipo: 'objeto'
},
{
valor: 'tem',
cru: 'ter',
tipo: 'verbo',
importante: true,
acao: 'posse'
},
{
valor: 'vários',
cru: 'vários',
tipo: 'quantidade',
formula: (x) => x > 1
},
{
valor: 'alunos',
cru: 'aluno',
tipo: 'objeto'
},
{
valor: '.',
cru: '.',
tipo: 'pontuação'
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment