Skip to content

Instantly share code, notes, and snippets.

View brettfazio's full-sized avatar
🐢
<- Turtle

Brett Fazio brettfazio

🐢
<- Turtle
View GitHub Profile
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."
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)
module basicSequential;
integer a, b, c;
initial
begin
$display("Hello!");
a = 5;
b = 4;
c = a + b;
module basicParallel;
integer a, b, c;
initial
fork
$display("Hello!");
a = 5;
b = 4;
c = a + b;