Home > OS >  Powershell Turtle Functionality - Is there a way to mimic the Python Turtle in Powershell?
Powershell Turtle Functionality - Is there a way to mimic the Python Turtle in Powershell?

Time:04-06

Powershell Turtle Functionality - Is there a way to mimic the Python Turtle in Powershell?

I have searched the internet and can only find people creating functions to place dashes, underscores or pipes to make horizontal or vertical "lines".

CodePudding user response:

Apparently, there is no built in Turtle functionality in PowerShell. The best approach seems to be customizing your own function by some unique method or using one of the aforementioned methods to build it for your self. When I get to that point, and should it be something worth while, then it will be posted. Thanks to all at Stack Overflow!

  • Related