Skip to content
 
 

Latest commit

 

History

25 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages