Code
Getting Started: Prolog (SWI-Prolog)
After wrote part I, i forgot that it should be a tutorial for installing and running (or compiling) prolog source code. In advance, we will use SWI-Prolog, a free software of prolog environment licensed under LGPL, which can be downloaded here. The distribution came into binaries and source for multi-environment operating system. It is your [...]
Getting Started: Prolog (part I)
Dear iTech reader,
In next semester, i will take course on Logic Programming using prolog. Logic programming is a family of declarative-type programming. Why declarative? It is because prolog represents problem in declarative statements based on goals. It is also known as the goal-oriented.
So this is my first program taken from Ivan Bratko's book: Prolog: Programming [...]
Test Drive: WP-Syntax for Java
Just wanna to check if syntax highlighter is working:
public class Hello{
public static void main(String []args){
System.out.println("Hello World!");
}
}


