Browse Source

Initial commit

sampieters 1 year ago
commit
a5db0bebb9
4 changed files with 29 additions and 0 deletions
  1. 2 0
      .gitattributes
  2. 8 0
      .idea/.gitignore
  3. 2 0
      README.md
  4. 17 0
      main.py

+ 2 - 0
.gitattributes

@@ -0,0 +1,2 @@
+# Auto detect text files and perform LF normalization
+* text=auto

+ 8 - 0
.idea/.gitignore

@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml

+ 2 - 0
README.md

@@ -0,0 +1,2 @@
+# SCCD2DEVS
+ Thesis project to convert the SCCD language to pyDEVS

+ 17 - 0
main.py

@@ -0,0 +1,17 @@
+# This is a sample Python script.
+
+# Press ⌃R to execute it or replace it with your code.
+# Press Double ⇧ to search everywhere for classes, files, tool windows, actions, and settings.
+
+
+def print_hi(name):
+    # Use a breakpoint in the code line below to debug your script.
+    print(f'Hi, {name}')  # Press ⌘F8 to toggle the breakpoint.
+
+
+# Press the green button in the
+# gutter to run the script.
+if __name__ == '__main__':
+    print_hi('PyCharm')
+
+# See PyCharm help at https://www.jetbrains.com/help/pycharm/