Skip to content

Instantly share code, notes, and snippets.

@Shinpeim
Created February 19, 2012 08:48
Show Gist options
  • Save Shinpeim/1862647 to your computer and use it in GitHub Desktop.
Save Shinpeim/1862647 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
require "curses"
Curses::init_screen
max_y = Curses::stdscr.maxy
Curses::cbreak
max_y.downto(1) do |y|
Curses::clear
Curses::setpos(y - 1 , 0)
Curses::addstr("意識")
Curses::refresh
sleep 0.1
end
Curses::close_screen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment