Download Latest Version v4.5.2 source code.tar.gz (2.7 MB)
Email in envelope

Get an email when there's a new version of happyx

Home / v1.7.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2023-07-01 424 Bytes
String Formatting source code.tar.gz 2023-07-01 309.7 kB
String Formatting source code.zip 2023-07-01 343.5 kB
String Formatting.tar.gz 2023-07-01 309.7 kB
String Formatting.zip 2023-07-01 343.5 kB
Totals: 5 Items   1.3 MB 0

Since v1.7.0 you can use single-quoted strings as autoformatted:

  1. Autoformatting nim var myVar = 1 # Translates to "Hello, 1" "Hello, {myVar}"
  2. Raw string nim var myVar = 1 # Translates to "Hello, {myVar}" """Hello, {myVar}"""
  3. Handle raw strings nim var myVar = 1 # Translates to "Hello, 1" {fmt"""Hello, {myVar}"""}
Source: README.md, updated 2023-07-01