Problem of Apollonius: Difference between revisions

m
→‎{{header|11l}}: Named tuple as a base type
m (→‎{{header|11l}}: Named tuple as a base type)
 
Line 16:
{{trans|Python}}
 
<syntaxhighlight lang="11l">T Circle((Float x, Float y, Float r))
Float x, y, r
 
F (x, y, r)
.x = x
.y = y
.r = r
 
F String()
R ‘Circle(x=#., y=#., r=#.)’.format(.x, .y, .r)
1,480

edits