Include a file: Difference between revisions

Content added Content deleted
(Add Racket example)
Line 324: Line 324:


<lang R>source("filename.R")</lang>
<lang R>source("filename.R")</lang>

=={{header|Racket}}==

Including files is usually discouraged in favor of using modules, but it is still possible:

<lang lisp>
#lang racket
(include "other-file.rkt")
</lang>


=={{header|Retro}}==
=={{header|Retro}}==