710 B
710 B
title | date | draft |
---|---|---|
It's Alive! | 2021-03-30T20:14:33+01:00 | true |
Welcome To My Blog
Here's a snippet of Go.
func str2int(strnum string) int {
i, err := strconv.Atoi(strnum)
if err != nil {
return 9999
}
return i
}
Here's a snippet of Java Springboot.
@RestController
@RequestMapping(value = "/hello")
public class TrainerController {
@GetMapping
public String helloWorld(){
return "Hello, World!";
}
}
Here's a snippet of Python.
def test_firefox_browser(headless):
bd = BrowserDriver().get("firefox", headless=headless)
bd.get('https://test.io')
assert "QA Testing as a Service | test IO" == bd.title
bd.quit()