Not one but two cool pure #swift bare metal examples were recently posted to the forums.
First for the Raspberry Pi Pico... "Zero lines of C. Not even the vector table, boot2, or startup code. The only non-Swift file is the linker script."

Bare-metal Raspberry Pi Pico examples written entirely in Swift, no C code at all
I'd like to share pico-bare-swift, a collection of bare-metal Raspberry Pi Pico (RP2040) examples written entirely in Embedded Swift, with zero lines of C. Not even the vector table, boot2, or startup code. The only non-Swift file is the linker script. What made this possible Placing data in specific linker sections. ARM Cortex-M requires the vector table and boot2 to be placed at specific addresses via linker sections. This used to require GCC's __attribute__((section(...))), but @section (SE-...
