Skip to content

Commit

Permalink
fixed notebook mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sc0rpi0n101 committed Jul 17, 2019
1 parent 1b95756 commit 6017afb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/nb/AST and ASR.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"integer, intent(in) :: a, b\n",
"integer :: c, d\n",
"c = a + b - d\n",
"r = c * a",
"r = c * a\n",
"end function\n",
"```\n",
"and look at how the AST and ASR looks like.\n",
Expand All @@ -33,7 +33,7 @@
"integer, intent(in) :: a, b\n",
"integer :: c, d\n",
"c = a + b - d\n",
"r = c * a",
"r = c * a\n",
"end function\n",
"\"\"\"\n",
"ast = src_to_ast(src, translation_unit=False)\n",
Expand Down

0 comments on commit 6017afb

Please sign in to comment.