We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18a4590 commit efe4bdfCopy full SHA for efe4bdf
pages/common/cython.md
@@ -0,0 +1,20 @@
1
+# cython
2
+
3
+> A compiler that converts .pyx files into C or C++ source files.
4
+> More information: <https://docs.cython.org/en/latest/>.
5
6
+- Compile into C code:
7
8
+`cython {{path/to/file}}`
9
10
+- Compile into C++ code:
11
12
+`cython --cplus {{path/to/file}}`
13
14
+- Specify an output file:
15
16
+`cython {{[-o|--output-file]}} {{path/to/output_file}} {{path/to/file}}`
17
18
+- Display version:
19
20
+`cython {{[-V|--version]}}`
0 commit comments