Last active
December 19, 2015 03:28
-
-
Save Yamabiko/5889993 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
require "curses" | |
include Curses | |
init_screen # スクリーンを初期化 | |
string = "Hello World!" | |
setpos(lines / 2, cols / 2 - (string.length / 2)) | |
# カーソル一位置 | |
addstr(string) # カーソル位置に string を挿入(上書) | |
refresh # スクリーンを更新(addstrしたやつが表示される) | |
getch # 入力を1文字受け付ける | |
close_screen # スクリーンを閉じる |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment