File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11(defun test-funcall (test-arg)
2+ (System.Console.Write "Functions: ")
23 (System.Console.WriteLine test-arg))
34
45(defun test-conditionals ()
4142 (System.Console.Write "2*3=") (System.Console.WriteLine (* 2 3))
4243 (System.Console.Write "2/2=") (System.Console.WriteLine (/ 2 2))
4344
44- (System.Console.WriteLine "Floats")
45+ (System.Console.WriteLine "Floats: ")
4546 (System.Console.Write "2.0 + 0.5=") (System.Console.WriteLine (+ 2.0 0.5))
4647 (System.Console.Write "3.0 - 1.5=") (System.Console.WriteLine (- 3.0 1.5))
4748 (System.Console.Write "2.0 * 0.7=") (System.Console.WriteLine (* 2.0 0.7))
5556
5657(System.Console.WriteLine "Naggum test suite")
5758
58- (System.Console.Write "Functions: ")
5959(test-funcall "OK")
60-
6160(test-conditionals)
6261(test-let)
6362(test-quote)
6463(test-new)
6564(test-cons)
66- (test-math )
65+ (test-quote )
6766(test-instance-call)
67+ (test-math)
You can’t perform that action at this time.
0 commit comments