This file contains hidden or 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
| name = 'Brett' | |
| blog_title = 'Medium' | |
| # Hi, my name is Brett and I am writing on my Medium blog. | |
| a = f"Hi, my name is {name} and I am writing on my {blog_title} blog." |
This file contains hidden or 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
| name = 'Brett' | |
| blog_title = 'Medium' | |
| # Hi, my name is Brett and I am writing on my Medium blog. | |
| a = "Hi, my name is {} and I am writing on my {} blog.".format(name, blog_title) |
This file contains hidden or 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
| module basicSequential; | |
| integer a, b, c; | |
| initial | |
| begin | |
| $display("Hello!"); | |
| a = 5; | |
| b = 4; | |
| c = a + b; |
This file contains hidden or 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
| module basicParallel; | |
| integer a, b, c; | |
| initial | |
| fork | |
| $display("Hello!"); | |
| a = 5; | |
| b = 4; | |
| c = a + b; |
OlderNewer