From 1c217ee6ac5aacd2f37b1d0e69a71ac94afd5acd Mon Sep 17 00:00:00 2001 From: Daniel Cerqueira Date: Wed, 28 May 2025 12:37:55 +0100 Subject: Init lali programming language. --- test/other/executables/emacs.el | 3 +++ test/other/executables/empty.lisp | 0 test/other/executables/script.lali | 4 ++++ 3 files changed, 7 insertions(+) create mode 100755 test/other/executables/emacs.el create mode 100755 test/other/executables/empty.lisp create mode 100755 test/other/executables/script.lali (limited to 'test/other/executables') diff --git a/test/other/executables/emacs.el b/test/other/executables/emacs.el new file mode 100755 index 0000000..e7e2efc --- /dev/null +++ b/test/other/executables/emacs.el @@ -0,0 +1,3 @@ +#!/usr/local/bin/emacs --script + +(princ 'i) diff --git a/test/other/executables/empty.lisp b/test/other/executables/empty.lisp new file mode 100755 index 0000000..e69de29 diff --git a/test/other/executables/script.lali b/test/other/executables/script.lali new file mode 100755 index 0000000..934323d --- /dev/null +++ b/test/other/executables/script.lali @@ -0,0 +1,4 @@ +#!/home/guest/me/programming/desktop/lisp/interpreter/lali/lali -c + +(princ "ola") +(newline) -- cgit