task_url
stringlengths
30
116
task_name
stringlengths
2
86
task_description
stringlengths
0
14.4k
language_url
stringlengths
2
53
language_name
stringlengths
1
52
code
stringlengths
0
61.9k
http://rosettacode.org/wiki/Terminal_control/Dimensions
Terminal control/Dimensions
Determine the height and width of the terminal, and store this information into variables for subsequent use.
#Applesoft_BASIC
Applesoft BASIC
WIDTH = PEEK(33) HEIGHT = PEEK(35) - PEEK(34)
http://rosettacode.org/wiki/Terminal_control/Dimensions
Terminal control/Dimensions
Determine the height and width of the terminal, and store this information into variables for subsequent use.
#Arturo
Arturo
print ["Terminal width:" terminal\width] print ["Terminal height:" terminal\height]
http://rosettacode.org/wiki/Terminal_control/Dimensions
Terminal control/Dimensions
Determine the height and width of the terminal, and store this information into variables for subsequent use.
#AutoHotkey
AutoHotkey
DllCall( "AllocConsole" ) ; create a console if not launched from one hConsole := DllCall( "GetStdHandle", int, STDOUT := -11 )   MsgBox Resize the console...   VarSetCapacity(csbi, 22) ; CONSOLE_SCREEN_BUFFER_INFO structure DllCall("GetConsoleScreenBufferInfo", UPtr, hConsole, UPtr, &csbi) Left := NumGet(csbi, 10, "...
http://rosettacode.org/wiki/Terminal_control/Cursor_positioning
Terminal control/Cursor positioning
Task Move the cursor to column   3,   row   6,   and display the word   "Hello"   (without the quotes),   so that the letter   H   is in column   3   on row   6.
#Action.21
Action!
PROC Main() Position(3,6) Print("Hello") RETURN
http://rosettacode.org/wiki/Terminal_control/Cursor_positioning
Terminal control/Cursor positioning
Task Move the cursor to column   3,   row   6,   and display the word   "Hello"   (without the quotes),   so that the letter   H   is in column   3   on row   6.
#Ada
Ada
with Ada.Text_IO;   procedure Cursor_Pos is   begin Ada.Text_IO.Set_Line(6); Ada.Text_IO.Set_Col(3); Ada.Text_IO.Put("Hello"); end Cursor_Pos;
http://rosettacode.org/wiki/Terminal_control/Cursor_positioning
Terminal control/Cursor positioning
Task Move the cursor to column   3,   row   6,   and display the word   "Hello"   (without the quotes),   so that the letter   H   is in column   3   on row   6.
#ARM_Assembly
ARM Assembly
    /* ARM assembly Raspberry PI */ /* program cursorPos.s */   /* Constantes */ .equ STDOUT, 1 @ Linux output console .equ EXIT, 1 @ Linux syscall .equ WRITE, 4 @ Linux syscall     /* Initialized data */ .data szMessStartPgm: ...
http://rosettacode.org/wiki/Ternary_logic
Ternary logic
This page uses content from Wikipedia. The original article was at Ternary logic. The list of authors can be seen in the page history. As with Rosetta Code, the text of Wikipedia is available under the GNU FDL. (See links for details on variance) In logic, a three-valued logic (also trivalent, ternary, or trinary...
#AutoHotkey
AutoHotkey
Ternary_Not(a){ SetFormat, Float, 2.1 return Abs(a-1) }   Ternary_And(a,b){ return a<b?a:b }   Ternary_Or(a,b){ return a>b?a:b }   Ternary_IfThen(a,b){ return a=1?b:a=0?1:a+b>1?1:0.5 }   Ternary_Equiv(a,b){ return a=b?1:a=1?b:b=1?a:0.5 }
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#C.23
C#
class Program { static void Main() { System.Console.WriteLine("£"); } }
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#C.2B.2B
C++
#include <iostream>   int main() { std::cout << static_cast<char>(163); // pound sign return 0; }
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#Clojure
Clojure
(println "£")
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#COBOL
COBOL
IDENTIFICATION DIVISION. PROGRAM-ID. Display-Pound.   PROCEDURE DIVISION. DISPLAY "£"   GOBACK .
http://rosettacode.org/wiki/Text_processing/1
Text processing/1
This task has been flagged for clarification. Code on this page in its current state may be flagged incorrect once this task has been clarified. See this page's Talk page for discussion. Often data is produced by one program, in the wrong format for later use by another program or person. In these situations another pr...
#BBC_BASIC
BBC BASIC
file% = OPENIN("readings.txt") IF file% = 0 THEN PRINT "Could not open test data file" : END   Total = 0 Count% = 0 BadMax% = 0 bad% = 0 WHILE NOT EOF#file% text$ = GET$#file% IF text$<>"" THEN tab% = INSTR(text$, CHR$(9)) date$ = LEFT$(text$...
http://rosettacode.org/wiki/Terminal_control/Positional_read
Terminal control/Positional read
Determine the character displayed on the screen at column 3, row 6 and store that character in a variable. Note that it is permissible to utilize system or language provided methods or system provided facilities, system maintained records or available buffers or system maintained display records to achieve this task, r...
#REXX
REXX
/*REXX program demonstrates reading a character from (at) at specific screen location. */ row = 6 /*point to a particular row on screen*/ col = 3 /* " " " " column " " */ howMany = 1 ...
http://rosettacode.org/wiki/Terminal_control/Positional_read
Terminal control/Positional read
Determine the character displayed on the screen at column 3, row 6 and store that character in a variable. Note that it is permissible to utilize system or language provided methods or system provided facilities, system maintained records or available buffers or system maintained display records to achieve this task, r...
#TXR
TXR
;;; Type definitions and constants   (typedef BOOL (enum BOOL FALSE TRUE)) (typedef HANDLE cptr) (typedef WCHAR wchar) (typedef DWORD uint32) (typedef WORD uint16) (typedef SHORT short)   (typedef COORD (struct COORD (X SHORT) (Y SHORT)))   (typedef SMALL_RECT (struct SMALL_RECT ...
http://rosettacode.org/wiki/Terminal_control/Positional_read
Terminal control/Positional read
Determine the character displayed on the screen at column 3, row 6 and store that character in a variable. Note that it is permissible to utilize system or language provided methods or system provided facilities, system maintained records or available buffers or system maintained display records to achieve this task, r...
#Wren
Wren
/* terminal_control_positional_read.wren */   import "random" for Random   foreign class Window { construct initscr() {}   foreign addstr(str)   foreign inch(y, x)   foreign move(y, x)   foreign refresh()   foreign getch()   foreign delwin() }   class Ncurses { foreign static endwin() } ...
http://rosettacode.org/wiki/The_ISAAC_Cipher
The ISAAC Cipher
ISAAC is a cryptographically secure pseudo-random number generator (CSPRNG) and stream cipher. It was developed by Bob Jenkins from 1993 (http://burtleburtle.net/bob/rand/isaac.html) and placed in the Public Domain. ISAAC is fast - especially when optimised - and portable to most architectures in nearly all programming...
#Julia
Julia
  """ Julia translation of code from the following: ------------------------------------------------------------------------------ readable.c: My random number generator, ISAAC. (c) Bob Jenkins, March 1996, Public Domain You may use this code in any way you wish, and it is free. No warrantee. -------------------------...
http://rosettacode.org/wiki/Test_integerness
Test integerness
Mathematically, the integers Z are included in the rational numbers Q, which are included in the real numbers R, which can be generalized to the complex numbers C. This means that each of those larger sets, and the data types used to represent them, include some integers. Task[edit] Given a rational, real, or co...
#Kotlin
Kotlin
// version 1.1.2   import java.math.BigInteger import java.math.BigDecimal   fun Double.isLong(tolerance: Double = 0.0) = (this - Math.floor(this)) <= tolerance || (Math.ceil(this) - this) <= tolerance   fun BigDecimal.isBigInteger() = try { this.toBigIntegerExact() true } catch (ex: Ar...
http://rosettacode.org/wiki/Text_processing/Max_licenses_in_use
Text processing/Max licenses in use
A company currently pays a fixed sum for the use of a particular licensed software package.   In determining if it has a good deal it decides to calculate its maximum use of the software from its license management log file. Assume the software's licensing daemon faithfully records a checkout event when a copy of the ...
#Perl
Perl
#!/usr/bin/perl -w use strict;   my $out = 0; my $max_out = -1; my @max_times;   open FH, '<mlijobs.txt' or die "Can't open file: $!"; while (<FH>) { chomp; if (/OUT/) { $out++; } else { $out--; } if ($out > $max_out) { $max_out = $out; @max_times = (); } if (...
http://rosettacode.org/wiki/Test_a_function
Test a function
Task Using a well-known testing-specific library/module/suite for your language, write some tests for your language's entry in Palindrome. If your language does not have a testing specific library well known to the language's community then state this or omit the language.
#J
J
NB. Contents of palindrome_test.ijs   NB. Basic testing test_palinA=: monad define assert isPalin0 'abcba' assert isPalin0 'aa' assert isPalin0 '' assert -. isPalin0 'ab' assert -. isPalin0 'abcdba' )   NB. Can test for expected failure instead palinB_expect=: 'assertion failure' test_palinB=: monad define ...
http://rosettacode.org/wiki/Test_a_function
Test a function
Task Using a well-known testing-specific library/module/suite for your language, write some tests for your language's entry in Palindrome. If your language does not have a testing specific library well known to the language's community then state this or omit the language.
#Java
Java
import static ExampleClass.pali; // or from wherever it is defined import static ExampleClass.rPali; // or from wherever it is defined import org.junit.*; public class PalindromeTest extends junit.framework.TestCase { @Before public void setUp(){ //runs before each test //set up instance variabl...
http://rosettacode.org/wiki/Text_processing/2
Text processing/2
The following task concerns data that came from a pollution monitoring station with twenty-four instruments monitoring twenty-four aspects of pollution in the air. Periodically a record is added to the file, each record being a line of 49 fields separated by white-space, which can be one or more space or tab characters...
#Ursala
Ursala
#import std #import nat   readings = (*F ~&c/;digits+ rlc ==+ ~~ -={` ,9%cOi&,13%cOi&}) readings_dot_txt   valid_format = all -&length==49,@tK27 all ~&w/`.&& ~&jZ\digits--'-.',@tK28 all ~&jZ\digits--'-'&-   duplicate_dates = :/'duplicated dates:'+ ~&hK2tFhhPS|| -[(none)]-!   good_readings = --' good readin...
http://rosettacode.org/wiki/Text_processing/2
Text processing/2
The following task concerns data that came from a pollution monitoring station with twenty-four instruments monitoring twenty-four aspects of pollution in the air. Periodically a record is added to the file, each record being a line of 49 fields separated by white-space, which can be one or more space or tab characters...
#VBScript
VBScript
Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.OpenTextFile(objFSO.GetParentFolderName(WScript.ScriptFullName) &_ "\readings.txt",1) Set objDateStamp = CreateObject("Scripting.Dictionary")   Total_Records = 0 Valid_Records = 0 Duplicate_TimeStamps = ""   Do Until objFile.AtEndOfStream ...
http://rosettacode.org/wiki/Terminal_control/Ringing_the_terminal_bell
Terminal control/Ringing the terminal bell
Task Make the terminal running the program ring its "bell". On modern terminal emulators, this may be done by playing some other sound which might or might not be configurable, or by flashing the title bar or inverting the colors of the screen, but was classically a physical bell within the terminal.   It is usua...
#Python
Python
print "\a"
http://rosettacode.org/wiki/Terminal_control/Ringing_the_terminal_bell
Terminal control/Ringing the terminal bell
Task Make the terminal running the program ring its "bell". On modern terminal emulators, this may be done by playing some other sound which might or might not be configurable, or by flashing the title bar or inverting the colors of the screen, but was classically a physical bell within the terminal.   It is usua...
#Quackery
Quackery
ding
http://rosettacode.org/wiki/Terminal_control/Ringing_the_terminal_bell
Terminal control/Ringing the terminal bell
Task Make the terminal running the program ring its "bell". On modern terminal emulators, this may be done by playing some other sound which might or might not be configurable, or by flashing the title bar or inverting the colors of the screen, but was classically a physical bell within the terminal.   It is usua...
#R
R
alarm()
http://rosettacode.org/wiki/Terminal_control/Ringing_the_terminal_bell
Terminal control/Ringing the terminal bell
Task Make the terminal running the program ring its "bell". On modern terminal emulators, this may be done by playing some other sound which might or might not be configurable, or by flashing the title bar or inverting the colors of the screen, but was classically a physical bell within the terminal.   It is usua...
#Racket
Racket
  #lang racket (require (planet neil/charterm:3:0)) (with-charterm (void (charterm-bell)))  
http://rosettacode.org/wiki/The_Twelve_Days_of_Christmas
The Twelve Days of Christmas
Task Write a program that outputs the lyrics of the Christmas carol The Twelve Days of Christmas. The lyrics can be found here. (You must reproduce the words in the correct order, but case, format, and punctuation are left to your discretion.) Other tasks related to string operations: Metrics Array length Stri...
#BASIC
BASIC
10 DEFINT I,J: DEFSTR N,V: DIM N(12),V(12) 20 FOR I=1 TO 12: READ N(I): NEXT 30 FOR I=1 TO 12: READ V(I): NEXT 40 FOR I=1 TO 12 50 PRINT "On the ";N(I);" day of Christmas" 60 PRINT "My true love gave to me:" 70 FOR J=I TO 1 STEP -1: PRINT V(J): NEXT 75 PRINT 80 NEXT 90 END 100 DATA first,second,third,fourth,fifth,sixth...
http://rosettacode.org/wiki/Terminal_control/Preserve_screen
Terminal control/Preserve screen
Task Clear the screen, output something on the display, and then restore the screen to the preserved state that it was in before the task was carried out. There is no requirement to change the font or kerning in this task, however character decorations and attributes are expected to be preserved.   If the implement...
#zkl
zkl
print("\e[?1049h\e[H"); println("Alternate screen buffer"); foreach i in ([5..1,-1]){ print("\rgoing back in %d...".fmt(i)); Atomic.sleep(1); } print("\e[?1049l");
http://rosettacode.org/wiki/Terminal_control/Hiding_the_cursor
Terminal control/Hiding the cursor
The task is to hide the cursor and show it again.
#Mathematica.2FWolfram_Language
Mathematica/Wolfram Language
Run["tput civis"] (* Cursor hidden *) Pause[2] Run["tput cvvis"] (* Cursor Visible *)
http://rosettacode.org/wiki/Terminal_control/Hiding_the_cursor
Terminal control/Hiding the cursor
The task is to hide the cursor and show it again.
#Nemerle
Nemerle
using System.Console; using System.Threading.Thread;   module CursorVisibility { Main() : void { repeat(3) { CursorVisible = !CursorVisible; Sleep(5000); } } }
http://rosettacode.org/wiki/Terminal_control/Hiding_the_cursor
Terminal control/Hiding the cursor
The task is to hide the cursor and show it again.
#Nim
Nim
import terminal   echo "Cursor hidden. Press a key to show the cursor and exit." stdout.hideCursor() discard getCh() stdout.showCursor()  
http://rosettacode.org/wiki/Terminal_control/Hiding_the_cursor
Terminal control/Hiding the cursor
The task is to hide the cursor and show it again.
#Perl
Perl
print "\e[?25l"; # hide the cursor print "Enter anything, press RETURN: "; # prompt shown $input = <>; # but no cursor print "\e[0H\e[0J\e[?25h"; # reset, visible again
http://rosettacode.org/wiki/Terminal_control/Hiding_the_cursor
Terminal control/Hiding the cursor
The task is to hide the cursor and show it again.
#Phix
Phix
cursor(NO_CURSOR) sleep(1) cursor(UNDERLINE_CURSOR)
http://rosettacode.org/wiki/Terminal_control/Inverse_video
Terminal control/Inverse video
Task Display a word in inverse video   (or reverse video)   followed by a word in normal video.
#Nim
Nim
import terminal   stdout.styledWrite("normal ", styleReverse, "inverse", resetStyle, " normal\n")
http://rosettacode.org/wiki/Terminal_control/Inverse_video
Terminal control/Inverse video
Task Display a word in inverse video   (or reverse video)   followed by a word in normal video.
#OCaml
OCaml
$ ocaml unix.cma -I +ANSITerminal ANSITerminal.cma   # open ANSITerminal ;; # print_string [Inverse] "Hello\n" ;; Hello - : unit = ()
http://rosettacode.org/wiki/Terminal_control/Inverse_video
Terminal control/Inverse video
Task Display a word in inverse video   (or reverse video)   followed by a word in normal video.
#Pascal
Pascal
program InverseVideo; {$LINKLIB tinfo} uses ncurses; begin initscr; attron(A_REVERSE); printw('reversed'); attroff(A_REVERSE); printw(' normal'); refresh; getch; endwin; end.  
http://rosettacode.org/wiki/Terminal_control/Inverse_video
Terminal control/Inverse video
Task Display a word in inverse video   (or reverse video)   followed by a word in normal video.
#Perl
Perl
print "normal\n"; system "tput rev"; print "reversed\n"; system "tput sgr0"; print "normal\n";
http://rosettacode.org/wiki/Terminal_control/Dimensions
Terminal control/Dimensions
Determine the height and width of the terminal, and store this information into variables for subsequent use.
#Axe
Axe
' ANSI terminal dimensions X = COLUMNS Y = ROWS   PRINT "X,Y: ", X, ",", Y
http://rosettacode.org/wiki/Terminal_control/Dimensions
Terminal control/Dimensions
Determine the height and width of the terminal, and store this information into variables for subsequent use.
#BaCon
BaCon
' ANSI terminal dimensions X = COLUMNS Y = ROWS   PRINT "X,Y: ", X, ",", Y
http://rosettacode.org/wiki/Terminal_control/Dimensions
Terminal control/Dimensions
Determine the height and width of the terminal, and store this information into variables for subsequent use.
#Batch_File
Batch File
@echo off   for /f "tokens=1,2 delims= " %%A in ('mode con') do ( if "%%A"=="Lines:" set line=%%B if "%%A"=="Columns:" set cols=%%B )   echo Lines: %line% echo Columns: %cols% exit /b 0
http://rosettacode.org/wiki/Terminal_control/Cursor_positioning
Terminal control/Cursor positioning
Task Move the cursor to column   3,   row   6,   and display the word   "Hello"   (without the quotes),   so that the letter   H   is in column   3   on row   6.
#Arturo
Arturo
goto 3 6 print "Hello"
http://rosettacode.org/wiki/Terminal_control/Cursor_positioning
Terminal control/Cursor positioning
Task Move the cursor to column   3,   row   6,   and display the word   "Hello"   (without the quotes),   so that the letter   H   is in column   3   on row   6.
#AutoHotkey
AutoHotkey
DllCall( "AllocConsole" ) ; create a console if not launched from one hConsole := DllCall( "GetStdHandle", int, STDOUT := -11 )   DllCall("SetConsoleCursorPosition", UPtr, hConsole, UInt, (6 << 16) | 3) WriteConsole(hConsole, "Hello")   MsgBox   WriteConsole(hConsole, text){ VarSetCapacity(out, 16) If DllCall( "Write...
http://rosettacode.org/wiki/Terminal_control/Cursor_positioning
Terminal control/Cursor positioning
Task Move the cursor to column   3,   row   6,   and display the word   "Hello"   (without the quotes),   so that the letter   H   is in column   3   on row   6.
#Axe
Axe
Output(2,5,"HELLO")
http://rosettacode.org/wiki/Ternary_logic
Ternary logic
This page uses content from Wikipedia. The original article was at Ternary logic. The list of authors can be seen in the page history. As with Rosetta Code, the text of Wikipedia is available under the GNU FDL. (See links for details on variance) In logic, a three-valued logic (also trivalent, ternary, or trinary...
#BASIC256
BASIC256
  global tFalse, tDontKnow, tTrue tFalse = 0 tDontKnow = 1 tTrue = 2   print "Nombres cortos y largos para valores lógicos ternarios:" for i = tFalse to tTrue print shortName3$(i); " "; longName3$(i) next i print   print "Funciones de parámetro único" print "x"; " "; "=x"; " "; "not(x)" for i = tFalse to tTrue prin...
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#Common_Lisp
Common Lisp
  (format t "札幌~%") (format t "~C~%" (code-char #x00A3))  
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#D
D
import std.stdio;   void main() { writeln('\u00A3'); }
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#Dc
Dc
49827 P
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#EchoLisp
EchoLisp
  ;; simplest (display "£") ;; unicode character (display "\u00a3") ;; HTML special character (display "&pound;") ;; CSS enhancement (display "£" "color:blue;font-size:2em")  
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#Erlang
Erlang
8> Pound = [163]. 9> io:fwrite( "~s~n", [Pound] ). £
http://rosettacode.org/wiki/Text_processing/1
Text processing/1
This task has been flagged for clarification. Code on this page in its current state may be flagged incorrect once this task has been clarified. See this page's Talk page for discussion. Often data is produced by one program, in the wrong format for later use by another program or person. In these situations another pr...
#C
C
#include <stdio.h> #include <stdlib.h> #include <string.h>   static int badHrs, maxBadHrs;   static double hrsTot = 0.0; static int rdgsTot = 0; char bhEndDate[40];   int mungeLine( char *line, int lno, FILE *fout ) { char date[40], *tkn; int dHrs, flag, hrs2, hrs; double hrsSum; int hrsCnt = 0; ...
http://rosettacode.org/wiki/Terminal_control/Positional_read
Terminal control/Positional read
Determine the character displayed on the screen at column 3, row 6 and store that character in a variable. Note that it is permissible to utilize system or language provided methods or system provided facilities, system maintained records or available buffers or system maintained display records to achieve this task, r...
#XPL0
XPL0
include c:\cxpl\stdlib; int C; [Cursor(3, 6); \move cursor to column 3, row 6 (top left = 0,0) \Call BIOS interrupt routine to read character (& attribute) at cursor position C:= CallInt($10, $0800, 0) & $00FF; \mask off attribute, leaving the character ]
http://rosettacode.org/wiki/The_ISAAC_Cipher
The ISAAC Cipher
ISAAC is a cryptographically secure pseudo-random number generator (CSPRNG) and stream cipher. It was developed by Bob Jenkins from 1993 (http://burtleburtle.net/bob/rand/isaac.html) and placed in the Public Domain. ISAAC is fast - especially when optimised - and portable to most architectures in nearly all programming...
#Kotlin
Kotlin
// version 1.1.3   /* external results */ val randrsl = IntArray(256) var randcnt = 0   /* internal state */ val mm = IntArray(256) var aa = 0 var bb = 0 var cc = 0   const val GOLDEN_RATIO = 0x9e3779b9.toInt()   fun isaac() { cc++ // cc just gets incremented once per 256 results bb += cc // then combi...
http://rosettacode.org/wiki/Test_integerness
Test integerness
Mathematically, the integers Z are included in the rational numbers Q, which are included in the real numbers R, which can be generalized to the complex numbers C. This means that each of those larger sets, and the data types used to represent them, include some integers. Task[edit] Given a rational, real, or co...
#Lua
Lua
function isInt (x) return type(x) == "number" and x == math.floor(x) end   print("Value\tInteger?") print("=====\t========") local testCases = {2, 0, -1, 3.5, "String!", true} for _, input in pairs(testCases) do print(input, isInt(input)) end
http://rosettacode.org/wiki/Test_integerness
Test integerness
Mathematically, the integers Z are included in the rational numbers Q, which are included in the real numbers R, which can be generalized to the complex numbers C. This means that each of those larger sets, and the data types used to represent them, include some integers. Task[edit] Given a rational, real, or co...
#Mathematica_.2F_Wolfram_Language
Mathematica / Wolfram Language
IntegerQ /@ {E, 2.4, 7, 9/2}
http://rosettacode.org/wiki/Text_processing/Max_licenses_in_use
Text processing/Max licenses in use
A company currently pays a fixed sum for the use of a particular licensed software package.   In determining if it has a good deal it decides to calculate its maximum use of the software from its license management log file. Assume the software's licensing daemon faithfully records a checkout event when a copy of the ...
#Phix
Phix
-- demo\rosetta\Max_licences.exw with javascript_semantics -- (include version/first of next three lines only) include mlijobs.e -- global constant lines, or: --assert(write_lines("mlijobs.txt",lines)!=-1) -- first run, or get from link above, then: --constant lines = read_lines("mlijobs.txt") integer maxout = 0, jobn...
http://rosettacode.org/wiki/Test_a_function
Test a function
Task Using a well-known testing-specific library/module/suite for your language, write some tests for your language's entry in Palindrome. If your language does not have a testing specific library well known to the language's community then state this or omit the language.
#JavaScript
JavaScript
const assert = require('assert');   describe('palindrome', () => { const pali = require('../lib/palindrome');   describe('.check()', () => { it('should return true on encountering a palindrome', () => { assert.ok(pali.check('racecar')); assert.ok(pali.check('abcba')); assert.ok(pali.check('aa'...
http://rosettacode.org/wiki/Text_processing/2
Text processing/2
The following task concerns data that came from a pollution monitoring station with twenty-four instruments monitoring twenty-four aspects of pollution in the air. Periodically a record is added to the file, each record being a line of 49 fields separated by white-space, which can be one or more space or tab characters...
#Vedit_macro_language
Vedit macro language
#50 = Buf_Num // Current edit buffer (source data) File_Open("|(PATH_ONLY)\output.txt") #51 = Buf_Num // Edit buffer for output file Buf_Switch(#50)   #11 = #12 = #13 = #14 = #15 = 0 Reg_Set(15, "xxx")   While(!At_EOF) { #10 = 0 #12++   // Check for repeated date field if (Match(@15)...
http://rosettacode.org/wiki/Terminal_control/Ringing_the_terminal_bell
Terminal control/Ringing the terminal bell
Task Make the terminal running the program ring its "bell". On modern terminal emulators, this may be done by playing some other sound which might or might not be configurable, or by flashing the title bar or inverting the colors of the screen, but was classically a physical bell within the terminal.   It is usua...
#Raku
Raku
print 7.chr;
http://rosettacode.org/wiki/Terminal_control/Ringing_the_terminal_bell
Terminal control/Ringing the terminal bell
Task Make the terminal running the program ring its "bell". On modern terminal emulators, this may be done by playing some other sound which might or might not be configurable, or by flashing the title bar or inverting the colors of the screen, but was classically a physical bell within the terminal.   It is usua...
#Retro
Retro
7 putc
http://rosettacode.org/wiki/Terminal_control/Ringing_the_terminal_bell
Terminal control/Ringing the terminal bell
Task Make the terminal running the program ring its "bell". On modern terminal emulators, this may be done by playing some other sound which might or might not be configurable, or by flashing the title bar or inverting the colors of the screen, but was classically a physical bell within the terminal.   It is usua...
#REXX
REXX
/*REXX program illustrates methods to ring the terminal bell or use the PC speaker. */ /*╔═══════════════════════════════════════════════════════════════╗ ║ ║ ║ Note that the hexadecima...
http://rosettacode.org/wiki/Terminal_control/Ringing_the_terminal_bell
Terminal control/Ringing the terminal bell
Task Make the terminal running the program ring its "bell". On modern terminal emulators, this may be done by playing some other sound which might or might not be configurable, or by flashing the title bar or inverting the colors of the screen, but was classically a physical bell within the terminal.   It is usua...
#Ring
Ring
  see char(7)  
http://rosettacode.org/wiki/The_Twelve_Days_of_Christmas
The Twelve Days of Christmas
Task Write a program that outputs the lyrics of the Christmas carol The Twelve Days of Christmas. The lyrics can be found here. (You must reproduce the words in the correct order, but case, format, and punctuation are left to your discretion.) Other tasks related to string operations: Metrics Array length Stri...
#BASIC256
BASIC256
dim dia$ = {"first","second","third","fourth","fifth","sixth","seventh","eighth","ninth","tenth","eleventh","twelfth"}   dim gift$ = {"A partridge in a pear tree.","Two turtle doves and","Three french hens","Four calling birds","Five golden rings","Six geese a-laying","Seven swans a-swimming","Eight maids a-milking","N...
http://rosettacode.org/wiki/The_Twelve_Days_of_Christmas
The Twelve Days of Christmas
Task Write a program that outputs the lyrics of the Christmas carol The Twelve Days of Christmas. The lyrics can be found here. (You must reproduce the words in the correct order, but case, format, and punctuation are left to your discretion.) Other tasks related to string operations: Metrics Array length Stri...
#BCPL
BCPL
get "libhdr"   let ordinal(n) = n=1 -> "first", n=2 -> "second", n=3 -> "third", n=4 -> "fourth", n=5 -> "fifth", n=6 -> "sixth", n=7 -> "seventh", n=8 -> "eighth", n=9 -> "ninth", n=10 -> "tenth", n=11 -> "eleventh", n=12 -> "twelfth", valof finish   let gift(n) = n=1 -> ...
http://rosettacode.org/wiki/Terminal_control/Hiding_the_cursor
Terminal control/Hiding the cursor
The task is to hide the cursor and show it again.
#PicoLisp
PicoLisp
(call "tput" "civis") # Invisible (wait 1000) (call "tput" "cvvis") # Visible
http://rosettacode.org/wiki/Terminal_control/Hiding_the_cursor
Terminal control/Hiding the cursor
The task is to hide the cursor and show it again.
#PureBasic
PureBasic
#cursorSize = 10 ;use a full sized cursor   If OpenConsole() Print("Press any key to toggle cursor: ") EnableGraphicalConsole(1) height = #cursorSize ConsoleCursor(height) Repeat If Inkey() height ! #cursorSize ConsoleCursor(height) EndIf ForEver EndIf
http://rosettacode.org/wiki/Terminal_control/Hiding_the_cursor
Terminal control/Hiding the cursor
The task is to hide the cursor and show it again.
#Python
Python
print("\x1b[?25l") # hidden print("\x1b[?25h") # shown  
http://rosettacode.org/wiki/Terminal_control/Hiding_the_cursor
Terminal control/Hiding the cursor
The task is to hide the cursor and show it again.
#Quackery
Quackery
[ $ &print("\x1b[?25l",end='')& python ] is hide ( --> )   [ $ &print("\x1b[?25h",end='')& python ] is show ( --> )
http://rosettacode.org/wiki/Terminal_control/Hiding_the_cursor
Terminal control/Hiding the cursor
The task is to hide the cursor and show it again.
#R
R
cat("\x1b[?25l") # Hide Sys.sleep(2) cat("\x1b[?25h") # Show
http://rosettacode.org/wiki/Terminal_control/Hiding_the_cursor
Terminal control/Hiding the cursor
The task is to hide the cursor and show it again.
#Racket
Racket
  #lang racket (void (system "tput civis")) (sleep 2) (void (system "tput cvvis"))  
http://rosettacode.org/wiki/Terminal_control/Inverse_video
Terminal control/Inverse video
Task Display a word in inverse video   (or reverse video)   followed by a word in normal video.
#Phix
Phix
-- -- demo\rosetta\Inverse_Video.exw -- ================================ -- with javascript_semantics text_color(BLACK) bk_color(WHITE) printf(1,"Inverse") text_color(WHITE) bk_color(BLACK) printf(1," Video") printf(1,"\n\npress enter to exit") {} = wait_key()
http://rosettacode.org/wiki/Terminal_control/Inverse_video
Terminal control/Inverse video
Task Display a word in inverse video   (or reverse video)   followed by a word in normal video.
#PicoLisp
PicoLisp
(prin "abc") (call "tput" "rev") (prin "def") # These three chars are displayed in reverse video (call "tput" "sgr0") (prinl "ghi")
http://rosettacode.org/wiki/Terminal_control/Inverse_video
Terminal control/Inverse video
Task Display a word in inverse video   (or reverse video)   followed by a word in normal video.
#Python
Python
#!/usr/bin/env python   print "\033[7mReversed\033[m Normal"
http://rosettacode.org/wiki/Terminal_control/Inverse_video
Terminal control/Inverse video
Task Display a word in inverse video   (or reverse video)   followed by a word in normal video.
#Quackery
Quackery
[ $ 'print("\033[7m", end="")' python ] is inversetext ( --> )   [ $ 'print("\033[m", end="")' python ] is regulartext ( --> )   inversetext say "inverse video" regulartext say " normal text"
http://rosettacode.org/wiki/Terminal_control/Inverse_video
Terminal control/Inverse video
Task Display a word in inverse video   (or reverse video)   followed by a word in normal video.
#Racket
Racket
  #lang racket (require (planet neil/charterm:3:0))   (with-charterm (charterm-clear-screen) (charterm-cursor 0 0) (charterm-inverse) (charterm-display "Hello") (charterm-normal) (charterm-display "World"))  
http://rosettacode.org/wiki/Terminal_control/Dimensions
Terminal control/Dimensions
Determine the height and width of the terminal, and store this information into variables for subsequent use.
#BBC_BASIC
BBC BASIC
dx% = @vdu.tr%-@vdu.tl% : REM Width of text viewport in pixels dy% = @vdu.tb%-@vdu.tt% : REM Height of text viewport in pixels
http://rosettacode.org/wiki/Terminal_control/Dimensions
Terminal control/Dimensions
Determine the height and width of the terminal, and store this information into variables for subsequent use.
#C
C
#include <sys/ioctl.h> /* ioctl, TIOCGWINSZ */ #include <err.h> /* err */ #include <fcntl.h> /* open */ #include <stdio.h> /* printf */ #include <unistd.h> /* close */   int main() { struct winsize ws; int fd;   /* Open the controlling terminal. */ fd = open("/dev/tty", O_RDWR); if (fd < 0) err(1, "/dev/tty");  ...
http://rosettacode.org/wiki/Terminal_control/Dimensions
Terminal control/Dimensions
Determine the height and width of the terminal, and store this information into variables for subsequent use.
#C.23
C#
  static void Main(string[] args) { int bufferHeight = Console.BufferHeight; int bufferWidth = Console.BufferWidth; int windowHeight = Console.WindowHeight; int windowWidth = Console.WindowWidth;   Console.Write("Buffer Height: "); Console.WriteLine(bufferHeight); Console.Write("Buffer Width...
http://rosettacode.org/wiki/Terminal_control/Cursor_movement
Terminal control/Cursor movement
Task Demonstrate how to achieve movement of the terminal cursor: how to move the cursor one position to the left how to move the cursor one position to the right how to move the cursor up one line (without affecting its horizontal position) how to move the cursor down one line (without affecting its horizontal po...
#AArch64_Assembly
AArch64 Assembly
  /* ARM assembly AARCH64 Raspberry PI 3B */ /* program cursorMove64.s */   /*******************************************/ /* Constantes file */ /*******************************************/ /* for this file see task include a file in language AArch64 assembly*/ .include "../includeConstantesA...
http://rosettacode.org/wiki/Terminal_control/Cursor_positioning
Terminal control/Cursor positioning
Task Move the cursor to column   3,   row   6,   and display the word   "Hello"   (without the quotes),   so that the letter   H   is in column   3   on row   6.
#BaCon
BaCon
' Cursor positioning, requires ANSI compliant terminal GOTOXY 3,6 PRINT "Hello"
http://rosettacode.org/wiki/Terminal_control/Cursor_positioning
Terminal control/Cursor positioning
Task Move the cursor to column   3,   row   6,   and display the word   "Hello"   (without the quotes),   so that the letter   H   is in column   3   on row   6.
#BASIC
BASIC
10 VTAB 6: HTAB 3 20 PRINT "HELLO"
http://rosettacode.org/wiki/Terminal_control/Cursor_positioning
Terminal control/Cursor positioning
Task Move the cursor to column   3,   row   6,   and display the word   "Hello"   (without the quotes),   so that the letter   H   is in column   3   on row   6.
#Befunge
Befunge
0"olleHH3;6["39*>:#,_$@
http://rosettacode.org/wiki/Terminal_control/Cursor_positioning
Terminal control/Cursor positioning
Task Move the cursor to column   3,   row   6,   and display the word   "Hello"   (without the quotes),   so that the letter   H   is in column   3   on row   6.
#Blast
Blast
# This will display a message at a specific position on the terminal screen .begin cursor 6,3 display "Hello!" return # This is the end of the script
http://rosettacode.org/wiki/Ternary_logic
Ternary logic
This page uses content from Wikipedia. The original article was at Ternary logic. The list of authors can be seen in the page history. As with Rosetta Code, the text of Wikipedia is available under the GNU FDL. (See links for details on variance) In logic, a three-valued logic (also trivalent, ternary, or trinary...
#BBC_BASIC
BBC BASIC
INSTALL @lib$ + "CLASSLIB"   REM Create a ternary class: DIM trit{tor, tand, teqv, tnot, tnor, s, v} DEF PRIVATE trit.s (t&) LOCAL t$():DIM t$(2):t$()="FALSE","MAYBE","TRUE":=t$(t&) DEF PRIVATE trit.v (t$) = INSTR("FALSE MAYBE TRUE", t$) DIV 6 DEF trit.tnot (t$) = FN(trit.s)(2 - FN(t...
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#Forth
Forth
163 xemit \ , or s" £" type
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#FreeBASIC
FreeBASIC
Print Chr(156)
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#Go
Go
package main   import "fmt"   func main() { fmt.Println("£") }
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#Haskell
Haskell
  module Main where main = do putStrLn "£" putStrLn "札幌"  
http://rosettacode.org/wiki/Terminal_control/Display_an_extended_character
Terminal control/Display an extended character
Task Display an extended (non ASCII) character onto the terminal. Specifically, display a   £   (GBP currency sign).
#Icon_and_Unicon
Icon and Unicon
  procedure main () write ("£ " || char (163)) # £ end  
http://rosettacode.org/wiki/Text_processing/1
Text processing/1
This task has been flagged for clarification. Code on this page in its current state may be flagged incorrect once this task has been clarified. See this page's Talk page for discussion. Often data is produced by one program, in the wrong format for later use by another program or person. In these situations another pr...
#C.2B.2B
C++
#include <iostream> #include <fstream> #include <string> #include <vector> #include <iomanip> #include <boost/lexical_cast.hpp> #include <boost/algorithm/string.hpp>   using std::cout; using std::endl; const int NumFlags = 24;   int main() { std::fstream file("readings.txt");   int badCount = 0; std::string...
http://rosettacode.org/wiki/The_ISAAC_Cipher
The ISAAC Cipher
ISAAC is a cryptographically secure pseudo-random number generator (CSPRNG) and stream cipher. It was developed by Bob Jenkins from 1993 (http://burtleburtle.net/bob/rand/isaac.html) and placed in the Public Domain. ISAAC is fast - especially when optimised - and portable to most architectures in nearly all programming...
#Lua
Lua
#!/usr/bin/env lua -- ISAAC - Lua 5.3   -- External Results local randRsl = {}; local randCnt = 0;   -- Internal State local mm = {}; local aa,bb,cc = 0,0,0;   -- Cap to maintain 32 bit maths local cap = 0x100000000;   -- CipherMode local ENCRYPT = 1; local DECRYPT = 2;   function isaac()   cc = ( cc + 1 ) % cap; --...
http://rosettacode.org/wiki/Test_integerness
Test integerness
Mathematically, the integers Z are included in the rational numbers Q, which are included in the real numbers R, which can be generalized to the complex numbers C. This means that each of those larger sets, and the data types used to represent them, include some integers. Task[edit] Given a rational, real, or co...
#Nim
Nim
import complex, rationals, math, fenv, sugar   func isInteger[T: Complex | Rational | SomeNumber](x: T; tolerance = 0f64): bool = when T is Complex: x.im == 0 and x.re.isInteger elif T is Rational: x.dup(reduce).den == 1 elif T is SomeFloat: ceil(x) - x <= tolerance elif T is SomeInteger: true  ...
http://rosettacode.org/wiki/Test_integerness
Test integerness
Mathematically, the integers Z are included in the rational numbers Q, which are included in the real numbers R, which can be generalized to the complex numbers C. This means that each of those larger sets, and the data types used to represent them, include some integers. Task[edit] Given a rational, real, or co...
#ooRexx
ooRexx
/* REXX --------------------------------------------------------------- * 22.06.2014 Walter Pachl using a complex data class * ooRexx Distribution contains an elaborate complex class * parts of which are used here * see REXX for Extra Credit implementation *--------------------------------------------------------------...
http://rosettacode.org/wiki/Text_processing/Max_licenses_in_use
Text processing/Max licenses in use
A company currently pays a fixed sum for the use of a particular licensed software package.   In determining if it has a good deal it decides to calculate its maximum use of the software from its license management log file. Assume the software's licensing daemon faithfully records a checkout event when a copy of the ...
#PHP
PHP
$handle = fopen ("mlijobs.txt", "rb"); $maxcount = 0; $count = 0; $times = array(); while (!feof($handle)) { $buffer = fgets($handle); $op = trim(substr($buffer,8,3)); switch ($op){ case 'IN': $count--; break; case 'OUT': $count++; preg_match('/([\...
http://rosettacode.org/wiki/Test_a_function
Test a function
Task Using a well-known testing-specific library/module/suite for your language, write some tests for your language's entry in Palindrome. If your language does not have a testing specific library well known to the language's community then state this or omit the language.
#jq
jq
# Test case 1: . 1 1   # Test case 2: 1+1 null 2   # Test case 3 (with the wrong result): 1+1 null 0   # A test case with a function definition: def factorial: if . <= 0 then 1 else . * ((. - 1) | factorial) end; factorial 3 6
http://rosettacode.org/wiki/Test_a_function
Test a function
Task Using a well-known testing-specific library/module/suite for your language, write some tests for your language's entry in Palindrome. If your language does not have a testing specific library well known to the language's community then state this or omit the language.
#Jsish
Jsish
/* Palindrome detection, in Jsish */ function isPalindrome(str:string, exact:boolean=true) { if (!exact) { str = str.toLowerCase().replace(/[^a-z0-9]/g, ''); } return str === str.split('').reverse().join(''); }
http://rosettacode.org/wiki/Text_processing/2
Text processing/2
The following task concerns data that came from a pollution monitoring station with twenty-four instruments monitoring twenty-four aspects of pollution in the air. Periodically a record is added to the file, each record being a line of 49 fields separated by white-space, which can be one or more space or tab characters...
#Wren
Wren
import "io" for File import "/pattern" for Pattern import "/fmt" for Fmt import "/sort" for Sort   var p = Pattern.new("+1/s") var fileName = "readings.txt" var lines = File.read(fileName).trimEnd().split("\r\n") var count = 0 var invalid = 0 var allGood = 0 var map = {} for (line in lines) { count = count + 1 ...
http://rosettacode.org/wiki/Terminal_control/Ringing_the_terminal_bell
Terminal control/Ringing the terminal bell
Task Make the terminal running the program ring its "bell". On modern terminal emulators, this may be done by playing some other sound which might or might not be configurable, or by flashing the title bar or inverting the colors of the screen, but was classically a physical bell within the terminal.   It is usua...
#Ruby
Ruby
print "\a"
http://rosettacode.org/wiki/Terminal_control/Ringing_the_terminal_bell
Terminal control/Ringing the terminal bell
Task Make the terminal running the program ring its "bell". On modern terminal emulators, this may be done by playing some other sound which might or might not be configurable, or by flashing the title bar or inverting the colors of the screen, but was classically a physical bell within the terminal.   It is usua...
#Rust
Rust
fn main() { print!("\x07"); }
http://rosettacode.org/wiki/Terminal_control/Ringing_the_terminal_bell
Terminal control/Ringing the terminal bell
Task Make the terminal running the program ring its "bell". On modern terminal emulators, this may be done by playing some other sound which might or might not be configurable, or by flashing the title bar or inverting the colors of the screen, but was classically a physical bell within the terminal.   It is usua...
#Scala
Scala
java.awt.Toolkit.getDefaultToolkit().beep()
http://rosettacode.org/wiki/Terminal_control/Ringing_the_terminal_bell
Terminal control/Ringing the terminal bell
Task Make the terminal running the program ring its "bell". On modern terminal emulators, this may be done by playing some other sound which might or might not be configurable, or by flashing the title bar or inverting the colors of the screen, but was classically a physical bell within the terminal.   It is usua...
#Seed7
Seed7
$ include "seed7_05.s7i";   const proc: main is func begin write("\a"); end func;