Newer
Older
2022-KEGO / mycgi / even.rb
@”Sato ”Sato on 27 Oct 2022 120 bytes fix
#!/usr/bin/env python
# coding: utf-8

x = [1,23,4,5,98,7,5,8]
for i in x do
    if i%2 == 0
        puts i
    end
end