KDesp73 / kdscript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

kd interpreter

Install

./install.sh

Usage

  1. Write your script
  2. Run with:
kdscript filename.kd

Example Script

# Method to print a star pyramid of user defined height
func printPyramid {
    echo "Enter height: "
    height = val(input())
    i = 1
    while i <= height {
        spaces = height - i
        while spaces > 0 {
            echo " "
            spaces = spaces - 1
        }

        stars = 2 * i - 1
        while stars > 0 {
            echo "*"
            stars = stars - 1
        }

        echo "\n"
        i = i + 1
    }
}

call printPyramid

LICENSE

GNU

Author

KDesp73

About

License:GNU General Public License v3.0


Languages

Language:Python 93.5%Language:Shell 4.7%Language:Roff 1.8%