UnBCIC-TP2/Oberon-Scala

Suporte a todos os tipos básicos

Closed this issue · 0 comments

A implementação atual suporta apenas os tipos básicos Boolean e Integer. Por outro lado, a especificação original da linguagem Oberon suporta os seguintes tipos básicos:

  • CHAR the characters of the extended ASCII set (0X ... 0FFX).
  • SHORTINT the integers between -128 and 127.
  • LONGINT the integers between MIN(LONGINT) and MAX(LONGINT).
  • REAL real numbers between MIN(REAL) and MAX(REAL).
  • LONGREAL real numbers between MIN(LONGREAL) and MAX(LONGREAL).
  • SET the sets of integers between 0 and MAX(SET).

Essa feature pode demandar mais de um grupo em uma mesma sprint.