Support of the .sld file extension for Scheme.

This commit is contained in:
Paul Chaignon
2014-02-11 13:39:50 +01:00
parent a1eab2a439
commit 0eaaa2bacc
2 changed files with 8 additions and 0 deletions

View File

@@ -1552,6 +1552,7 @@ Scheme:
color: "#1e4aec"
primary_extension: .scm
extensions:
- .sld
- .sls
- .ss
interpreters:

7
samples/Scheme/basic.sld Normal file
View File

@@ -0,0 +1,7 @@
(define-library (libs basic)
(export list2 x)
(begin
(define (list2 . objs) objs)
(define x 'libs-basic)
(define not-exported 'should-not-be-exported)
))