Skip to main content
6 of 13
added 17 characters in body
Soleil
  • 131
  • 4

c# with 10 bytes (without the strings a, b)

$"{a}.{b}{b}" 

tio.run

With an explicit lambda:

(a,b) => $"{a}.{b}{b}" 

tio.run lambda

Soleil
  • 131
  • 4