Skip to content

Releases: aprimr/tinypanda

TinyPanda v1.1.0

Choose a tag to compare

@aprimr aprimr released this 08 Jul 15:21

What's New in v1.1.0

Float Data Type

  • Full Support: Floating-point numbers are now first-class citizens.
  • Float Literals: Supports clean decimal notations like 3.14, 0.5, and -5.5.
  • Mixed-Type Math: Support mix integers and floats expressions (e.g., 5 + 2.5 = 7.5).
  • Comparisons: Compare values across numeric types directly (e.g., 5.5 > 4).

Built-in Functions

  • num(): Now parses decimal strings into floats.
  • str(): Formats floats into strings.

Full Changelog: v1.0.0...v1.1.0

TinyPanda v1.0.0

Choose a tag to compare

@aprimr aprimr released this 04 Jul 17:59

This is the first public release of TinyPanda.

Highlights

  • Lightweight, dynamically typed interpreted programming language
  • Tree-walking interpreter written in Go
  • Simple and expressive syntax
  • Cross-platform binaries for Linux, macOS, and Windows

Downloads

Choose the binary for your operating system:

  • tinypanda-linux
  • tinypanda-macos
  • tinypanda-windows.exe

See the documentation for installation instructions.

Thank you for trying TinyPanda! Feedback, bug reports, and feature requests are always welcome.

Full Changelog: https://github.com/aprimr/tinypanda/commits/v1.0.0