Skip to content

Commit

Permalink
Move clisp
Browse files Browse the repository at this point in the history
  • Loading branch information
egorguslyan committed May 8, 2023
1 parent 6f6444e commit be84e09
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions config/languages.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,23 @@ in [ { id = "assembly"
}
] : List Book
}
, { id = "clisp"
, name = "Common Lisp"
, logoName = "clisp"
, fileExtension = "lsp"
, editorConfig =
{ defaultFilename = "main.lsp"
, mode = "ace/mode/lisp"
, useSoftTabs = True
, exampleCode = "(format t \"Hello World!\")"
}
, runConfig = Some
{ containerImage = "glot/clisp:latest"
, runCommand = "sbcl --noinform --non-interactive --load main.lsp"
, versionCommand = "sbcl --version"
}
, books = [] : List Book
}
, { id = "clojure"
, name = "Clojure"
, logoName = "clojure"
Expand Down Expand Up @@ -229,23 +246,6 @@ in [ { id = "assembly"
}
] : List Book
}
, { id = "clisp"
, name = "Common Lisp"
, logoName = "clisp"
, fileExtension = "lsp"
, editorConfig =
{ defaultFilename = "main.lsp"
, mode = "ace/mode/lisp"
, useSoftTabs = True
, exampleCode = "(format t \"Hello World!\")"
}
, runConfig = Some
{ containerImage = "glot/clisp:latest"
, runCommand = "sbcl --noinform --non-interactive --load main.lsp"
, versionCommand = "sbcl --version"
}
, books = [] : List Book
}
, { id = "cpp"
, name = "C++"
, logoName = "cpp"
Expand Down

0 comments on commit be84e09

Please sign in to comment.