Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
|
|
@ -0,0 +1,5 @@
|
|||
sequence vc = video_config()
|
||||
printf(1,"Terminal buffer height is %d\n",vc[VC_LINES])
|
||||
printf(1,"Terminal buffer width is %d\n",vc[VC_COLUMNS])
|
||||
printf(1,"Terminal screen height is %d\n",vc[VC_SCRNLINES])
|
||||
printf(1,"Terminal screen width is %d\n",vc[VC_SCRNCOLS])
|
||||
|
|
@ -0,0 +1 @@
|
|||
system("mode 50,20")
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
var stty = `stty -a`;
|
||||
var lines = stty.match(/\brows\h+(\d+)/);
|
||||
var cols = stty.match(/\bcolumns\h+(\d+)/);
|
||||
say "#{lines} #{cols}";
|
||||
Loading…
Add table
Add a link
Reference in a new issue