2
I have the following struct in my program:
+<vara>: struct[Vara] {
name = "Dados da Vara"
request = "Preencha os dados da vara"
fields {
+[numero] : Integer {
name = "Número"
request = "Número"
help = "Caso seja a 19ª Vara, preencha \"19\""
default = 20
},
+[tipo]: List("Vara Cível", "Vara Trabalhista"){
name = "Tipo"
request = "Tipo"
atomic = true
},
+[estado]: String {
name = "Estado"
request = "Estado"
},
+[cidade]: String {
name = "Cidade"
request = "Cidade"
}
}
},
I would like to add a different pattern from print
to play only print <vara>
in the operations
, and he prints me in that format:
1st DISTRICT COURT OF SÃO PAULO - SP
Interesting that in the parameter
id
I can concatenate text using Tubes and variables the same way!– Luan Naufal