RosettaCodeData/Task/Amb/Smalltalk/amb-3.st

10 lines
272 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
result :=
Amb try:(1 to:11) in:[:x |
Amb try:(1 to:11) in:[:y |
Amb try:(1 to:11) in:[:z |
(x squared + y squared = z squared) ifTrue:[
{x . y . z}
].
]]].
Transcript showCR: e'found rectangle {result}'.