views:

150

answers:

4

I am new to Python and prolog. From my understanding, Python is a strongly typed language. Is Prolog a strongly typed language also?

+4  A: 

Python is strongly typed.

ie:

"1" + 1

Raises TypeError

I believe Prolog is not strongly typed though.

xyld
+2  A: 

Prolog is not a strongly typed language.

ref: http://scom.hud.ac.uk/scomtlm/book/node187.html

S.Mark
A: 

[...] Is Prolog a strongly typed language also?

No

OscarRyz
+4  A: 
Norman Ramsey