Skip to content

NOVA v0.5.1

Choose a tag to compare

@varundubey-dev varundubey-dev released this 25 Jun 14:34

Patch release for NOVA v0.5.

This release improves the print() statement by allowing multiple expressions to be printed in a single call.


Highlights

  • Multiple expressions in print()
  • Comma-separated output arguments

Example:

name: S = "Nova"
age: N = 1

print(name, age)

Output:

Nova 1

Output values are separated by a single space.


Documentation

Complete language documentation:

Runnable examples:


Compatibility

Fully backward compatible with NOVA v0.5.0.


Next Release

Planned for v0.6:

  • While loops
  • Range loops
  • Array iteration
  • Loop scope
  • Enhanced control flow