You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hm, I'd prefer as much compatibility with existing string formatting & interpolation solutions (beginning with printf from the C standard through V up to e.g. Python).
Basil should have some way to easily format strings. Here are a couple syntax proposals.
The percent symbol could be swapped out for something like
#
or$
.("hello %0 %1" format "world" true)
-> yields"hello world true"
`hello %{"world"} %{true}`
-> yields"hello world true"
The text was updated successfully, but these errors were encountered: