-
Notifications
You must be signed in to change notification settings - Fork 5
Home
Jacques Nomssi edited this page Jan 1, 2018
·
69 revisions
- Style: http://community.schemewiki.org/?scheme-style
- Tutorials: SICP / HtDP / UCSC
- Specification R6RS: http://www.r6rs.org/
- How to make your own: https://github.com/kanaka/mal/blob/master/process/guide.md
- IDE: run report ZZ_LISP_IDE
- Features
- Sample Code
Class lcl_lisp_interpreter
- method
eval_repl( code )
throws an exception on errors - method
eval_source( code )
catches exception
Interface lif_port
INTERFACE lif_port.
METHODS write IMPORTING element TYPE REF TO lcl_lisp.
METHODS read IMPORTING iv_input TYPE string OPTIONAL
RETURNING VALUE(rv_input) TYPE string.
ENDINTERFACE.
(let (( profiles
(let ( (f3 (ab-function "BAPI_USER_GET_DETAIL")) )
( begin (ab-set f3 "USERNAME" (ab-get ab-sy "UNAME") )
(f3) (ab-get f3 "PROFILES") ) )
) )
(let ((profile (ab-get profiles 1)) )
(ab-get profile "BAPIPROF" ) )