6 lines
103 B
Python
6 lines
103 B
Python
![]() |
from manim import *
|
||
|
|
||
|
class HelloWorld(Scene):
|
||
|
def construct(self):
|
||
|
self.add(Text("Hello World"))
|