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 6ced014 commit f96b2b1Copy full SHA for f96b2b1
SConstruct
@@ -46,6 +46,7 @@ languages = {
46
'fortran': 'f90',
47
'go': 'go',
48
'julia': 'jl',
49
+ 'lolcode': 'lol',
50
'lua': 'lua',
51
'php': 'php',
52
'powershell': 'ps1',
sconscripts/lolcode_SConscript
@@ -0,0 +1,6 @@
1
+Import('files_to_compile env')
2
+from pathlib import Path
3
+
4
+for file in files_to_compile:
5
+ chapter_name = file.parent.parent.parent.stem
6
+ env.Copier(f'#/build/lolcode/{chapter_name}.lol', str(file))
0 commit comments