2048: Difference between revisions

10 bytes removed ,  26 days ago
m
→‎{{header|FutureBasic}}: Remove FutureBasic 'Output' label
m (→‎{{header|FutureBasic}}: Remove FutureBasic 'Output' label)
 
(3 intermediate revisions by 2 users not shown)
Line 8,300:
handleevents
</syntaxhighlight>
[[File:FutureBasic 2048 Game Window.png]]
{{out}}
[[File:2048 Game Window.png]]
 
=={{header|Go}}==
Line 16,703 ⟶ 16,702:
{{libheader|Wren-fmt}}
{{libheader|Wren-str}}
<syntaxhighlight lang="ecmascriptwren">import "./dynamic" for Enum, Struct
import "random" for Random
import "./ioutil" for Input
import "./fmt" for Fmt
import "./str" for Str
 
var MoveDirection = Enum.create("MoveDirection", ["up", "down", "left", "right"])
416

edits