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 d00c7c3 commit 763de24Copy full SHA for 763de24
Script Examples/testironpython3.py
@@ -0,0 +1,11 @@
1
+# Add standard Python references
2
+#https://github.com/IronLanguages/ironpython3/blob/v3.4.0-alpha1/Documentation/differences-from-c-python.md
3
+import sys
4
+sys.path.append('C:\Program Files\IronPython 3.4\Lib')
5
+import os
6
+import math
7
+print(sys.implementation.name)
8
+print(type(1<<64))
9
+print(isinstance(1<<64, int))
10
+print('\ud83d\udf0b')
11
+print('abc:~~:zyz'.encode('utf-7'))
0 commit comments