〔概要〕”Hello, world”と表示するプログラムです。

〔技法〕Processing

〔実行例〕

〔プログラム〕

def setup():
  size(360, 80)
  textSize(50)
def draw():
  background(0)
  fill(255)
  text("Hello, world", 50, 50)