Skip to content
This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
/ clala Public archive

The language in which to perform a function in the AWS Lambda.

Notifications You must be signed in to change notification settings

winebarrel/clala

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clala

The language in which to perform a function in the AWS Lambda.

usage

$ export CLALA_REGION=us-west-1
$ export CLALA_ROLE=arn:aws:iam::123456789012:role/lambda_exec_role
$ export CLALA_QUEUE_URL=https://sqs.ap-northeast-1.amazonaws.com/123456789012/myqueue

$ clala # show prompt
clala> ...

$ clala any-script.cll # run script

example

(define i 100)

(define func1 (clambda (x) (+ x i)))
(define func2 (clambda (y) (* y i)))

(func1 1 (lambda (x)
  (begin
    (print x)
    (func2 x (lambda (y)
      (begin
      (print y)
      (exit)))))))

About

The language in which to perform a function in the AWS Lambda.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages