Skip to content

Commit

Permalink
Merge pull request #47 from pratham15541/master
Browse files Browse the repository at this point in the history
Added dart langauge support
  • Loading branch information
prasmussen authored Jun 29, 2023
2 parents bee9d45 + 390b865 commit 3d25177
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions config/languages.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,29 @@ in [ { id = "assembly"
}
] : List Book
}
, { id = "dart"
, name = "Dart"
, logoName = "dart"
, fileExtension = "dart"
, editorConfig =
{ defaultFilename = "main.dart"
, mode = "ace/mode/dart"
, useSoftTabs = True
, softTabSize = 4
, exampleCode =
''
void main() {
print('Hello, World!');
}
''
}
, runConfig = Some
{ containerImage = "glot/dart:latest"
, runCommand = "dart main.dart"
, versionCommand = "dart --version"
}
, books = [] : List Book
}
, { id = "elixir"
, name = "Elixir"
, logoName = "elixir"
Expand Down
1 change: 1 addition & 0 deletions static/img/dart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/dart.svg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3d25177

Please sign in to comment.