Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 806 Bytes

File metadata and controls

49 lines (40 loc) · 806 Bytes

10Print

the infamous Commodore 64 BASIC program called 10 print in various languages

Result

10 Print in p5.js Image

Usage

For C#

csc 10Print.cs && 10Print.exe

For Javascript

node 10Print.js

For typescript, you first need to install node typings

npm install --global ts-node
npm install --save-dev @types/node

then make a new file and name if tsconfig.json in root directory and add the following configuration in it.

{
    "compilerOptions": {
      "typeRoots": [
        "./node_modules/@types"
      ]
    }
  }

then run

ts-node 10Print.ts

For python

python 10Print.py

Fopr p5.js example

Open 10Print.html in your browser