0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

今日のmruby エラー

Last updated at Posted at 2019-09-06

SWESTでのmruby ワークショップでの作業。

今日のmrubyコンパイルエラー

chat1.rb
t_ary = [100, 500 1000]
t_idx = 0
while true
  if SW() == 0 then
    t_idx = (t_idx + 1) %3
  end
  $t = t_ary[t_idx]
end
chat2.rb
while true
  leds_write 1
  sleep_ms $t
  leds_write 0
  sleep_ms $t
end

mruby.ideでの表示

mrubc
mrbc.exe chat1.rb
syntax error unexpected tINTEGE. expecting ']'

カンマが抜けていた。

chat1.rb
t_ary = [100, 500,  1000]
t_idx = 0
while true
  if SW() == 0 then
    t_idx = (t_idx + 1) %3
  end
  $t = t_ary[t_idx]
end
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?