
xxxxxxxxxx
1
# The game is interactive
2
# on desktop devices
3
4
direction = 1
5
6
function arrowUp()
7
direction = 0
8
9
function arrowRight()
10
direction = 1
11
12
function arrowDown()
13
direction = 2
14
15
function arrowLeft()
16
direction = 3
17
18
function loop()
19
if direction is 0
20
moveUp()
21
else if direction is 1
22
moveRight()
23
else if direction is 2
24
moveDown()
25
else if direction is 3
26
moveLeft()
27
Simplicity
Syntek is extremely easy to use. It keeps features simple and reads like English to make it easy for beginners to get started with programming!
Configurable
Change language, disable features, add linting rules, test code, move to different environments, and more!
Assignments
Make interactive assignments, enforce strict rules by disabling features, and expand to new environments like Arduino and Minecraft!