1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

lang/tcbasic: Update to 2.2.0

Changes:	https://github.com/tcort/tcbasic/releases/tag/v2.2.0
PR:		222192
Submitted by:	Thomas Cort <linuxgeek@gmail.com> (maintainer)
This commit is contained in:
Tobias Kortkamp 2017-09-10 13:43:09 +00:00
parent 1ab3fe74ae
commit 492175c49e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=449572
3 changed files with 8 additions and 9 deletions

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= tcbasic
PORTVERSION= 2.1.0
PORTVERSION= 2.2.0
CATEGORIES= lang
MASTER_SITES= https://github.com/tcort/${PORTNAME}/releases/download/v${PORTVERSION}/

View File

@ -1,2 +1,3 @@
SHA256 (tcbasic-2.1.0.tar.gz) = 00b1535237cb7fdea30acbed063cca3b82df221ce5d1b69104ae4dbc7d7ea194
SIZE (tcbasic-2.1.0.tar.gz) = 119570
TIMESTAMP = 1505046706
SHA256 (tcbasic-2.2.0.tar.gz) = 0fd87000f5c192ead1d02a2169e46eb6316660e89113ab3e901426e585a0054b
SIZE (tcbasic-2.2.0.tar.gz) = 135017

View File

@ -1,9 +1,7 @@
tcbasic implements a small subset of BASIC known as Tiny BASIC.
It provides the following statements and commands: INPUT, PRINT,
LET, GOTO, GOSUB, RETURN, IF, END, CLEAR, LIST, RUN, and STOP.
Integer and floating point arithmetic is supported, and strings
may be PRINTed. The following built-in functions are provided:
SIN, COS, TAN, COT, ATN, EXP, LOG, ABS, SQR, RND.
tcbasic implements a small subset of BASIC known as Tiny BASIC
with added support for floating point numbers and many of the
built-in mathematical functions in Dartmouth BASIC. It supports
basic I/O, flow control, subroutines, and debug tracing.
The small size of the language make it easy to learn and master
while providing all of the building blocks needed to develop many