Skip to content
Implemented single file reading and function declarations in following formats:

float main = () {
  return 3.14
}

int main = () (
  return 3
}

main = () {
  3.14
}