Skip to content
Snippets Groups Projects

Draft: Fortran Support

1 file
+ 2
6
Compare changes
  • Side-by-side
  • Inline
+ 2
6
@@ -8,12 +8,8 @@ from Infrastructure.Instruction import Instruction
from Infrastructure.Variables import ERROR_MARKER_COMMENT_BEGIN, ERROR_MARKER_COMMENT_END, ERROR_MARKER_COMMENT_BEGIN_FORT, ERROR_MARKER_COMMENT_END_FORT, adjust_var_language
import Infrastructure.Variables as infvars
asgn_template_c = """
@NAME@[@INDEX@] = @VALUE@;
"""
asgn_template_fort = """
@NAME@(@INDEX@) = @VALUE@
"""
asgn_template_c = "@NAME@[@INDEX@] = @VALUE@;"
asgn_template_fort = "@NAME@(@INDEX@) = @VALUE@"
"""
Class Overview:
Loading