Sudoku: Difference between revisions

13 bytes removed ,  10 months ago
m
→‎{{header|FutureBasic}}: Remove unsupported 'ConsoleWindow
(→‎{{header|Tailspin}}: Type bounds + link to blog post)
m (→‎{{header|FutureBasic}}: Remove unsupported 'ConsoleWindow)
Line 5,157:
First is a short version:
<syntaxhighlight lang="futurebasic">
include "ConsoleWindow"
include "NSLog.incl"
include "Util_Containers.incl"
Line 5,227 ⟶ 5,226:
short i, j;
CFMutableStringRef mutStr;
mutStr = CFStringCreateMutable( kCFAllocatorDefault, 0 );
 
Line 5,265 ⟶ 5,263:
print "No solution found"
end if
 
HandleEvents
</syntaxhighlight>
 
416

edits