Skip to content

Commit 0028774

Browse files
committed
Update
1 parent 01497f0 commit 0028774

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+9844
-146
lines changed

LC-MALC.ipynb

+711
Large diffs are not rendered by default.

LambdasCPP/.idea/LambdasCPP.iml

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LambdasCPP/.idea/codeStyles/Project.xml

+29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LambdasCPP/.idea/misc.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LambdasCPP/.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LambdasCPP/.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LambdasCPP/.idea/workspace.xml

+255
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LambdasCPP/.vscode/launch.json

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "C++ Launch",
9+
"type": "cppdbg",
10+
"request": "launch",
11+
"program": "/mnt/d/LambdaCalculus/LambdasCPP/a.out",
12+
"args": ["-fThreading"],
13+
"stopAtEntry": false,
14+
"cwd": "/mnt/d/LambdaCalculus/LambdasCPP",
15+
"environment": [],
16+
"externalConsole": false,
17+
"windows": {
18+
"MIMode": "gdb",
19+
"setupCommands": [
20+
{
21+
"description": "Enable pretty-printing for gdb",
22+
"text": "-enable-pretty-printing",
23+
"ignoreFailures": true
24+
}
25+
]
26+
},
27+
"pipeTransport": {
28+
"pipeCwd": "",
29+
"pipeProgram": "c:\\windows\\sysnative\\bash.exe",
30+
// "pipeProgram": "C:\\Windows\\System32\\bash.exe",
31+
"pipeArgs": ["-c"],
32+
"debuggerPath": "/usr/bin/gdb"
33+
},
34+
"sourceFileMap": {
35+
"/mnt/d": "d:\\"
36+
}
37+
}
38+
]
39+
}

LambdasCPP/CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
cmake_minimum_required(VERSION 3.12)
2+
project(LambdasCPP)
3+
4+
set(CMAKE_CXX_STANDARD 17)
5+
6+
add_executable(LambdasCPP main.cpp)

LambdasCPP/a.out

20.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)