Last active
July 6, 2020 02:41
-
-
Save lidangzzz/cc13e32762418a2b198759682f351f81 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function myFunction1(A) | |
{ | |
return A+A; | |
} | |
print("including library: test1"); | |
let a = mat([[1]]); | |
print("a+a is " + myFunction1(a)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function myfunction2(A) | |
{ | |
return A*3; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment