--- layout: pico8 title: Pico-8 --- ## Learning Objectives * Testing Syntax Highlighting ## Code
function _draw()
  cls()

  spr(1, 8, 16)

  str = "this is a string"
  --this is a comment

  symbols = "⬆️⬇️⬅️➡️❎∧░⧗▤☉◆⌂웃♥●✽★█▥ˇ▒♪🅾️🐱😐"
end