Position Independent Source Code

Update of "Position Independent Source Code"
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview

Artifact ID: 4e750853b50f3516838907d8741cc9501efe578d
Page Name:Position Independent Source Code
Date: 2017-09-14 01:06:33
Original User: yumaikas
Mimetype:text/x-markdown
Parent: a9d74ae9722af9d25ba641d340c085cdfe60e545
Content

Position Independent Source Code

PISC is a stack-based programming language that is primarily inspired by factor, TCL, bash and a little bit of python, written in go. It's currently a study in how far one can take code quotations, polymorphic stacks and pervasive dynamism.

Current longer term plan here

Noteworthy things can be found in the announcements

"Hello, World!" println

To get a feel for the basics of PISC, check out PISC in Y minutes

Some examples (which you can try in the playground):

# String building
${ 
   "The answer is " 
   6 7 * >string 
   ", but we don't know the question" 
}    

/* Defining an adjustable fizzbuzz word */
: fizzbuzz-n ( n -- ) :n /* Store from stack to n local */
    1 :i /* Store 1 into num variable */
     
    $n [
        $i 3 divisor? [ "Fizz" ] [ "" ] if :f
        $i 5 divisor? [ "Buzz" ] [ "" ] if :b
        $f $b str-concat :fb
        $fb len 0 > [ $fb println ] [ $i println ] if 
        ++i
    ] times ;
    
25 fizzbuzz-n

The largest achievement in PISC to date is a CSV parser.

Installing From Source

Before you can install PISC for trying out, you'll need to install Go 1.9 or newer.

There are two ways to install PISC right now

1) Install fossil and run

mkdir "$GOPATH/src/pisc" && cd "$GOPATH/src/pisc"
fossil clone https://pisc.junglecoder.com/home/apps/fossil/PISC.fossil PISC.fossil

2) Using git:

mkdir "$GOPATH/src/pisc" && cd "$GOPATH/src/pisc" 
git clone github.com/yumaikas/PISC-mirror .

In the future, a different URL for PISC is planned, but has not been setup as yet.

Once you have Go, and have PISC somewhere where the go compiler can work with it, you can run go get to fetch PISC's go dependencies, and go build -o pisc to build the PISC interpreter.

Once you have PISC built, pisc -i will open an interactive PISC session.

Other items

List of things to do.