Skip to content

Commit

Permalink
feat: add pandas support
Browse files Browse the repository at this point in the history
  • Loading branch information
j178 committed May 29, 2024
1 parent e352639 commit 0952dae
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lang/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ var (
blockCommentEnd: `"""`,
},
}
pandasGen = baseLang{
name: "Pandas",
slug: "pythondata",
shortName: "py",
extension: ".py",
lineComment: "#",
blockCommentStart: `"""`,
blockCommentEnd: `"""`,
}
cppGen = cpp{
baseLang{
name: "C++",
Expand Down Expand Up @@ -212,6 +221,7 @@ var (
SupportedLangs = []Lang{
golangGen,
python3Gen,
pandasGen,
cppGen,
rustGen,
javaGen,
Expand Down

0 comments on commit 0952dae

Please sign in to comment.