Function
writeStringToFile
(strToWrite, fileName)
Source from the content-addressed store, hash-verified
| 13 | |
| 14 | |
| 15 | def writeStringToFile(strToWrite, fileName): |
| 16 | f = open(fileName, "w") |
| 17 | f.write(strToWrite) |
| 18 | f.close() |
| 19 | |
| 20 | |
| 21 | def makeUnitSquareWire(): |