mirror of
https://github.com/maaslalani/slides.git
synced 2026-01-09 14:28:05 -05:00
Add support for the Julia language (#203)
* feat: add Julia language support * fix: indentation Co-authored-by: Maas Lalani <maas@lalani.dev>
This commit is contained in:
@@ -25,7 +25,8 @@ const (
|
||||
Python = "python"
|
||||
Ruby = "ruby"
|
||||
Rust = "rust"
|
||||
Java = "java"
|
||||
Java = "java"
|
||||
Julia = "julia"
|
||||
)
|
||||
|
||||
// Languages is a map of supported languages with their extensions and commands
|
||||
@@ -76,4 +77,8 @@ var Languages = map[string]Language{
|
||||
Extension: "java",
|
||||
Commands: cmds{{"java", "<file>"}},
|
||||
},
|
||||
Julia: {
|
||||
Extension: "jl",
|
||||
Commands: cmds{{"julia", "<file>"}},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user