mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-27 13:48:54 +08:00
15 lines
222 B
Go
15 lines
222 B
Go
// Copyright 2017 Baliance. All rights reserved.
|
|
package main
|
|
|
|
import (
|
|
"baliance.com/gooxml/presentation"
|
|
)
|
|
|
|
func main() {
|
|
ppt := presentation.New()
|
|
slide := ppt.AddSlide()
|
|
_ = slide
|
|
|
|
ppt.SaveToFile("simple.pptx")
|
|
}
|