Sudoku: Difference between revisions

Content added Content deleted
(→‎{{header|Tailspin}}: Type bounds + link to blog post)
m (→‎{{header|FutureBasic}}: Remove unsupported 'ConsoleWindow)
Line 5,157: Line 5,157:
First is a short version:
First is a short version:
<syntaxhighlight lang="futurebasic">
<syntaxhighlight lang="futurebasic">
include "ConsoleWindow"
include "NSLog.incl"
include "NSLog.incl"
include "Util_Containers.incl"
include "Util_Containers.incl"
Line 5,227: Line 5,226:
short i, j;
short i, j;
CFMutableStringRef mutStr;
CFMutableStringRef mutStr;
mutStr = CFStringCreateMutable( kCFAllocatorDefault, 0 );
mutStr = CFStringCreateMutable( kCFAllocatorDefault, 0 );


Line 5,265: Line 5,263:
print "No solution found"
print "No solution found"
end if
end if

HandleEvents
</syntaxhighlight>
</syntaxhighlight>