Skip to content

Commit f9a14cc

Browse files
authored
Merge pull request #12 from anauehara/andre
Merging branch Andre with branch main
2 parents 3135447 + ddd6227 commit f9a14cc

File tree

16 files changed

+1766
-1
lines changed

16 files changed

+1766
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/target
2-
.idea
2+
.idea
3+
.kiro

Cargo.lock

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ edition = "2021"
77
nom = "7.0"
88
approx = "0.5.1"
99
once_cell = "1.10"
10+
[target.'cfg(not(windows))'.dependencies]
11+
nix = { version = "0.29", features = ["signal"] }

example.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env python3
2+
3+
print("Hello from Python!")
4+
print("This is a test script.")
5+
print("Current working directory:", end=" ")
6+
7+
import os
8+
print(os.getcwd())

0 commit comments

Comments
 (0)