Lost your password?

Blogs about: Scheme Programming

Featured Blog

RAILWAY RESERVATION - SCHEME Programming1 comment

munchy wrote 1 year ago: THANKS TO SATYA FOR THE CODE – satish.smart@rediffmail.com ;;—————————————————————————————- ;; … more →

Tags: railway reservation code scheme, railway reservation scheme programming

Doctor Details Management (OOPS Concept) - Scheme1 comment

munchy wrote 1 year ago: ;;SPECIFICATION:——-TO MANAGE THE DOCTOR DETAILS OF DEPARTMENT OF HEALTH.—— … more →

Tags: Doctor, Doctor details management scheme, doctor details mangement scheme oops

Polymorphism in Scheme - An example

munchy wrote 1 year ago: ;;======GLOBAL VARIABLES===== (define t1 0) (define t2 0) ;;=====CLASS DEFINITION===== (define (clas … more →

Tags: Polymorphism Scheme, polymorphism scheme example

Vectors and Classes in Scheme - a simple example

munchy wrote 1 year ago: (define shop(make-vector 10)) (define (product p_id p_name p_cid p_price) (define (dispproduct) (dis … more →

Tags: vector class scheme example, vectors and classes in scheme example

Function Overloading in Scheme - An example

munchy wrote 1 year ago: PROGRAM :- ;; Schemes offer a case-lambda macro (define foo (case-lambda ((x) “no additional a … more →

Tags: function overloading scheme, function overloading scheme example

Vectors + Classes + Inheritance in Scheme Programming - an example1 comment

munchy wrote 1 year ago: (define s_id 0) (define s_name “”) (define s_courseid -1) (define s_sex -1) ;1-male,0-fe … more →

Tags: vector and class example in scheme, vector class inheritance scheme example, vectors inheritance classes in scheme

Inhertitance in Scheme - 2 ways

munchy wrote 1 year ago: First WAY Code: - ;;defn of super class (define (superclass) (define (inclass) (display “\n In … more →

Tags: inheritance in scheme, scheme inheritance

Inheritance in Scheme Programming

munchy wrote 1 year ago: (define s_id 0) (define s_name “”) (define s_courseid -1) (define s_sex -1) ;1-male,0-fe … more →

Tags: inheritance example in scheme, inheritance in scheme, scheme inheritance

OOPS BASICS (CLASS) in SCHEME1 comment

munchy wrote 1 year ago: (define (point x y) ;;like creating a class in c (define (getx) x) ;;private Function 1 to return x … more →

Tags: OOPS BASICS (CLASS) in SCHEME, OOPS Programming in scheme, oops scheme

Doctor Details Management in Scheme Language1 comment

munchy wrote 1 year ago: This Program was created by my group for the Structured Programming Case Study for TCS ILP in Scheme … more →

Tags: Doctor details management scheme, health care automation scheme

Length of a List in Scheme without using inbuilt function

munchy wrote 1 year ago: (define a(list 1 2 3 4)) (define b 5) (define c(list 6 7 8)) (define d 9) (define x(list a b c d)) ( … more →

Tags: Length of a List in Scheme without using inbuilt functi, Length of a List in Scheme

Append Lists in Scheme - User Defined Function

munchy wrote 1 year ago: (define z (list 1 2)) (define x (list 3 4)) (define a (list z x)) (define b (list 4 3 2)) (define (a … more →

Lists in Scheme Explained.

munchy wrote 1 year ago: Lists Lists can be built using pairs. A list is denoted by a collection of items enclosed in parenth … more →

Tags: Lists in Scheme, Lists in Scheme Explained, Scheme Lists tutorial, tutorial scheme lists

Program to display fibonacci series in Scheme

munchy wrote 1 year ago: (define a 0) ;define initial values of the series a=0 (define b 1) ;define second initial value b=1 … more →

Tags: fibonacci series in scheme, program to display fibonacci series in scheme

Program to reverse a number in Scheme Programming Language

munchy wrote 1 year ago: (define rev 0) ; initialize reverse of number as 0 (define rem 0) ;initialize remainder as 0 ;;read … more →

Tags: program to reverse a number in scheme, reverse a number in scheme

Vectors in Scheme Explained

munchy wrote 1 year ago: (display “enter the length of the vector you want to create :- “) (define a(read)) ; rea … more →

Tags: Vectors in Scheme explained

Program To add 2 complex Numbers in Scheme

munchy wrote 1 year ago: Here we will be Using Structures to add two Complex numbers in Scheme Programming Language. Structur … more →

Tags: Complex numbers add in Scheme, Structures in Scheme, Program to add 2 complex numbers in Scheme

Vectors in Scheme Explained.

munchy wrote 1 year ago: Vectors Vectors are heterogenous structures whose elements are indexed by integers. A vector typical … more →

Tags: tcs ilp vectors basics, vector basics in scheme, vectors in scheme language explained

Lambda Tube

deadwait wrote 1 year ago: As you know i have just started learning programming ( i mean really learning “programming … more →

Tags: Abhishek Mishra, Concrete Abstractions, download youtube videos, lambda-tube, lambdatube, Learning Scheme, learning scheme programming, Max Hailperin, PLT-scheme


Have your say. Start a blog.

See our free features →

Related Tags
All →

Follow this tag via RSS