navi-language / navi

Navi is a high-performance programming language.
https://navi-lang.org
94 stars 1 forks source link

Feature: printf #8

Open KieranP opened 1 month ago

KieranP commented 1 month ago

https://en.wikipedia.org/wiki/Printf

example c++:

printf(
  "#%d - World Tick (L: %.3f; A: %.3f) - Rendering (L: %.3f; A: %.3f)\n",
  world->tick,
   _f(lowest_tick),
  _f(avg_tick),
  _f(lowest_render),
  _f(avg_render)
);