Skip to content

Commit

Permalink
#113 Version of the test file to test function location management
Browse files Browse the repository at this point in the history
  • Loading branch information
brigittehuynh committed Jun 24, 2018
1 parent f97a4ee commit 88b0031
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,20 @@ echo "------------------------------------------"
x=1
# la variable y n'est pas initiliaze
z=$x+$y

function fonction ()
{
b = 2
a = $b+$c
}

# main
xx=y

fonction2 ()
{
b = 2
a = $b+$c
}

yy=y

0 comments on commit 88b0031

Please sign in to comment.