YumNumm Blog

記事のサンプル

dartでHello world

void main() {
  print("Hello world!");
}

kotlinでHello world

fun main() {
  println("Hello world")
}