-
-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Hope to have f-string like in python
reference:
https://peps.python.org/pep-0498/
https://realpython.com/python-f-strings/
https://github.com/bicycle1885/Fmt.jl
small example:
a="world"
println(f"hello {a}") # hello world
b=1.234567
c = f"number {b:.3f}" # "number 1.235"
d="aaaa"
println(f"{d=}") # d="aaaa", debug feature
Most important of all f-string enables a compact and expressive syntax which is clean, fast and fun to type.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request