Linked by Thom Holwerda on Thu 22nd Jan 2009 16:40 UTC
General Development Guile isn't just another extension language: it's the official extension language of the GNU project. Guile makes Scheme embeddable, which makes the interpreter ideal for embedded scripting and more. The days of building and delivering static software and products are over. Today, users expect their products to be dynamic and easily customizable. Learn how, with Guile, you can interpret Scheme scripts, dynamically bind scheme scripts into compiled C programs, and even integrate compiled C functions into Scheme scripts.
Order by: Score:
meh
by Yamin on Thu 22nd Jan 2009 20:33 UTC
Yamin
Member since:
2006-01-10

(define guile-script
(flash_kick ()
(display "Sonicboom") (newline)))

Reply Score: 1

RE: meh
by panzi on Thu 22nd Jan 2009 20:49 UTC in reply to "meh"
panzi Member since:
2006-01-22

class PythonScript:
   def punch(self):
      print 'hadouken'

Reply Score: 1

RE[2]: meh
by project_2501 on Thu 22nd Jan 2009 22:44 UTC in reply to "RE: meh"
project_2501 Member since:
2006-03-20

DIM code% 64
FOR pass%=0 TO 2 STEP 2
P%=code%
[ OPT pass%

ADR R0, text
SWI "OS_PrettyPrint"
SWI "OS_NewLine"
MOV PC, R14

.text
EQUS "Wata-Hurrrgh!"
EQUB 0
ALIGN

]
NEXT

CALL code%

Reply Score: 4