raw identifiers for functions
Here’s the code if you want to experiment with it:
import Testing
@Test
func `Division returns correct result`() throws {
let calculator = Calculator()
let result = try calculator.divide(10, 2)
#expect(result == 5.0)
}